Hi,
i am using vb.net and i would to send some structs to a C++ tcp server.
The problem is the structs i am sending might contain other structs.
Struct{ uint length; byte really; customStruct customStuff; }FirstStruct;
Struct{ uint length; char[] name; }CustomStruct;
Lets say i want to send FirstStruct over to the C++ Server. How do i go about doing it? Some code examples will be great.
thanks.