I'm wondering is there a way to send some kind of generics for example List <float> floatValues = new List<float>() need to be sent to udp client. I don't know how to do that, any help will be appreciated!
|
|
|
You can serialize Or you can create your own "application level protocol" and put to the stream type name and serializer type and use this information during deserialization process. |
|||||||||
|
|
What you want to do is known as serialization/deserialization
Instead of building your own serializer, I would recommend to use one of the existing libraries like XmlSerializer, SoapFormatter, BinaryFormatter, DataContractSerializer , DataContractJsonSerializer, JavaScriptSerializer, Json.Net, ServiceStack, Protobuf.Net ........ Here is an example using Json serialization
|
||||
|
|