views:

105

answers:

2

is it possible to do dynamic programming in monodevelop for developing iphone applications using .net

+1  A: 

If you are talking about Dynamic LANGUAGES (like Iron Python or Iron Ruby) then no...C# is the only language that is currently supported for MonoTouch (the framework for developing iphone apps in .NET).

CSharpAtl
A: 

Well, of course you can, but keep in mind that you are trading space for speed, and that the iphone doesn't have a lot of RAM... or a powerful processor anyway. For small recursive functions with a small n, it's a good idea, but you shouldn't be doing something more powerful than that on the iphone.

machielo