Question

I need to rewrite my Visual Studio project in Xamarin Studio(Gtk#), but I havent some methods in Xamarin like: System.Net.Sockets.Socket.Bind, Thread.SetApartmentState. And I think this isn't full list. How to use my Visual Studio methods in Xamarin or quick rewrite project? Thanks!

Was it helpful?

Solution

Obviously Mono supports both Socket.Bind and Thread.SetApartmentState,

https://github.com/mono/mono/blob/master/mcs/class/System/System.Net.Sockets/Socket.cs

https://github.com/mono/mono/blob/master/mcs/class/corlib/System.Threading/Thread.cs

So you need to review which project type you use in Xamarin Studio, and what kind of references you use.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top