Reputation: 45
I was a Android developer and now I am studying Xamarin
, but I always ask myself "can I convert all android(ios) code to xamarin.android or xamarin.ios
?" because I know c# is similar to java . However , they still have a few different syntax . Can someone help me answer this question ?
Upvotes: 3
Views: 4859
Reputation: 20312
Xamarin allows you to write Android apps in C#. It also allows you to use existing Java code in your solution. This is done by creating bindings, which is the bridge between managed code and the Android runtime.
For more information see:
Upvotes: 3