Click here to Skip to main content
15,906,574 members
Home / Discussions / C#
   

C#

 
AnswerRe: Problem with Crystal report Pin
help as an alias19-Jul-07 21:01
help as an alias19-Jul-07 21:01 
QuestionHow to write to file using FileStream class Pin
Chintan.Desai19-Jul-07 20:12
Chintan.Desai19-Jul-07 20:12 
AnswerRe: How to write to file using FileStream class Pin
Michael Sync19-Jul-07 20:33
Michael Sync19-Jul-07 20:33 
GeneralRe: How to write to file using FileStream class Pin
Chintan.Desai19-Jul-07 23:30
Chintan.Desai19-Jul-07 23:30 
AnswerRe: How to write to file using FileStream class Pin
Rudolf Jan20-Jul-07 7:12
Rudolf Jan20-Jul-07 7:12 
Questionbinding combo box with array Pin
monuSaini19-Jul-07 20:08
monuSaini19-Jul-07 20:08 
AnswerRe: binding combo box with array Pin
Michael Sync19-Jul-07 20:30
Michael Sync19-Jul-07 20:30 
GeneralRe: binding combo box with array Pin
monuSaini19-Jul-07 20:39
monuSaini19-Jul-07 20:39 
Questiondetect mouseclick in an area Pin
cyn819-Jul-07 19:34
cyn819-Jul-07 19:34 
AnswerRe: detect mouseclick in an area Pin
Christian Graus19-Jul-07 19:42
protectorChristian Graus19-Jul-07 19:42 
GeneralRe: detect mouseclick in an area Pin
cyn819-Jul-07 19:53
cyn819-Jul-07 19:53 
GeneralRe: detect mouseclick in an area Pin
Martin#19-Jul-07 20:05
Martin#19-Jul-07 20:05 
AnswerRe: detect mouseclick in an area Pin
Martin#19-Jul-07 19:53
Martin#19-Jul-07 19:53 
GeneralRe: detect mouseclick in an area Pin
cyn819-Jul-07 19:57
cyn819-Jul-07 19:57 
Questionproblem with SQL server Pin
prasadbuddhika19-Jul-07 19:21
prasadbuddhika19-Jul-07 19:21 
AnswerRe: problem with SQL server Pin
originSH19-Jul-07 21:55
originSH19-Jul-07 21:55 
QuestionCustom Tab Control Pin
T.EDY19-Jul-07 16:50
T.EDY19-Jul-07 16:50 
AnswerRe: Custom Tab Control Pin
Martin#19-Jul-07 19:15
Martin#19-Jul-07 19:15 
QuestionSocket communication (Winsock), interop ... Pin
devvvy19-Jul-07 15:30
devvvy19-Jul-07 15:30 
AnswerRe: Socket communication (Winsock), interop ... Pin
originSH19-Jul-07 21:59
originSH19-Jul-07 21:59 
GeneralRe: Socket communication (Winsock), interop ... Pin
devvvy20-Jul-07 3:15
devvvy20-Jul-07 3:15 
GeneralRe: Socket communication (Winsock), interop ... Pin
originSH20-Jul-07 4:10
originSH20-Jul-07 4:10 
There are several layers to network communications. Everything up to network protocol (i.e. tcp/ip most of the time) is standard.

You then have the communications protocol on top of this which can be standard if implimenting an existing one (i.e. the hidious IRC RFC 1459[^]) or custom if your making it yourself.

How you send the data over the communication protocol is what your dealing with here and will govern if (or rather how easily) different frameworks and languages can talk to each other. To send a class over you would have to serialize it at the one end and deserialize it at the other. If you have a serializer in C++ and a deserializer in C# that will work together then it'll be all good Smile | :)

How are you serializing the class at the c++ end?
GeneralRe: Socket communication (Winsock), interop ... Pin
devvvy20-Jul-07 22:31
devvvy20-Jul-07 22:31 
GeneralRe: Socket communication (Winsock), interop ... Pin
originSH23-Jul-07 12:10
originSH23-Jul-07 12:10 
AnswerRe: Socket communication (Winsock), interop ... Pin
pbraun20-Jul-07 9:12
pbraun20-Jul-07 9:12 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.