P
pwalessi1
Hi. I have a Queue<T> that I need to serialize, but when I try, I get
the error:
"You must implement a default accessor on
System.Collections.Generic.Queue"
It is my understanding that the default accessor has the form,
"function (int index)". But, that doesn't make any sense for a queue.
The reason that I am using a queue is for FIFO access.
Anyway, is there any way that I can serialize my queue?
Thanks for the help.
Pat
the error:
"You must implement a default accessor on
System.Collections.Generic.Queue"
It is my understanding that the default accessor has the form,
"function (int index)". But, that doesn't make any sense for a queue.
The reason that I am using a queue is for FIFO access.
Anyway, is there any way that I can serialize my queue?
Thanks for the help.
Pat