質問

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!

役に立ちましたか?

解決

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.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top