G+_Myron Reiss Posted March 30, 2014 Share Posted March 30, 2014 The program isn't complete until it is an executable file. Maybe they will get into that later, but I also want to know how to execute the program and give it to my friends. How do I get my program out of Microsoft Visual Studio Express? How do I get it into my Android phone and run? Link to comment Share on other sites More sharing options...
G+_Dean T Posted March 30, 2014 Share Posted March 30, 2014 Once you have compiled the program using f5 it appears in your projects folder under bin debug as an exe file. Just give that to your friends and they can run it as long as they have the dot net framework installed on their computer as it is required for any c# program since it is a dot net language. You can not put it on your android phone though as android does not support c#. You would need to learn to use http://xamarin.com/android or http://www.mono-project.com/Main_Page to make your code cross platform for it to run on android. If you want something that runs easily on android you need to look in to Java. Link to comment Share on other sites More sharing options...
G+_Myron Reiss Posted March 31, 2014 Author Share Posted March 31, 2014 Good, Thanks a lot. Link to comment Share on other sites More sharing options...
G+_Carlos Urrutia Posted March 31, 2014 Share Posted March 31, 2014 If you are planning on doing Android development, you should learn Java and the Android API http://developer.android.com/training/index.html. Link to comment Share on other sites More sharing options...
Recommended Posts