1

Possible Duplicate:
Develop Android app using C#

I have a program written in C# with .NET Framework. I want to run this on Android. Is there any way to do this?

Community
  • 1
  • 1
HelloUni
  • 448
  • 2
  • 5
  • 10

2 Answers2

1

Check out Mono for Android at http://xamarin.com/monoforandroid.

While your code may require some changes (especially if it calls Windows-specific methods), this should make it easy to port your program to an Android environment.

Roy Dictus
  • 32,551
  • 8
  • 60
  • 76
0

Android SDK is Java and no C#. Unless you can publish your C# as website or webapplication (browser accessable) you cannot do this without help.

You could try Mono for Android and edit your code if required.

http://xamarin.com/monoforandroid

Rob
  • 3,556
  • 2
  • 34
  • 53