I have a little bit stupid Question!!
I’m writing a little application with C# and the Network programming work with Windows PC’s.
I watch some newbies Tutorials from Microsoft that’s why.
So now i just want to know, how i can program so that my application can connect to all PC’s or Mac not regarding the OS(Win, Linux, Mac OS).
It’s possible? when yes how?
Thanks a lot for Helping!
You can use mono to develop in C# and deploy your application to Windows / Linux and Mac OS.
You can use a web service, and your client application on other OS’s can all connect to a webservice and use it, even if you end up developing your clients in another cross OS language like java.
On the other hand you could use tcp/ip, or udp protocols depending on your application needs.
It really depends on what you are doing.