Can I port my old C# desktop application on IPad using MonoTouch?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can probably re-use any modular logic.
The MonoTouch UI code is completely different than WinForms (or anything else in .NET really) so re-use there is pretty much impossible.
If your application mixed UI and Logic code in the same place, you’ll have to pull out the logic and create separate assemblies for them. You can then build your UI (using InterfaceBuilder) and then wire everything up with some new UI code.