Вопрос

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