+ 3
C#
Guys, an application created with C# can run on android platform?
3 Answers
+ 6
Yes. I developped some app with VisualStudio and Xamarin. The structure of the solution can contain 1 project by target (android, Ios, Windows, ...) and you can have one shared project for the reusable code. You develop in .NET and XML by exemple.
You can use interface to put code in each target also, for mechanics which work differently on each target platform.
+ 6
Yes... The written code can be compiled for android using android SDK with C# support.
+ 3
yes...