Reputation: 2879
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!
Upvotes: 0
Views: 514
Reputation: 63173
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.
Upvotes: 3