First of all, I never work worked with MonoTouch but did some app work with Titanium Mobile from Appcelerator. My answers will mostly apply to it.
The reason to pick a mobile app framwork (in my opinion) shouldn't be based only on the fact that you don't want to learn a language, unless you do it for yourself and for fun. There is other benefits and there is downsides too.
Downsides
You can't do everything. These frameworks (MonoTouch/Droid, Titanium Mobile, Rhodes Mobile, etc) will expose only a part of the possibilities via APIs. You will be restricted to use them. Before starting a project, check if everything you need is there and works well.
Another MAJOR downside for me is that you'll always be dependent on a third party. Appcelerator guys does a great work, but you won't be able to work on new iOS beta features as the new beta comes out. In fact, you may have to wait a few days/weeks after the final new versions of an OS is out to work with new features and even test your apps. This might change in the future if they are getting faster at supporting OS features. For iOS 4, "multitasking" couldn't be used on day 1 of FINAL iOS 4 availability (maybe for the paying customers) if I remember well. Maybe MonoTouch/Droid are faster. Appcelerator will probably be faster as eBay/Paypal invested 9M$ in it.
And now, what happens if the third party closes his doors? You've gotta think about it. What will hapen with your work in the future? Appcelerator open sourced Titanium Mobile so there is so there is chances a community get around it and continue it's development.
In Titanium Mobile, there is no MVC or so, you've got to organize your self with code. (might be a downside or not)
TDD: There is no built in testing tools in Titanium but you can use a third party tool called Helium (OSS from an Appcelerator guy, Kevin Whinnery).
So why use them?
Cross platform! At least, for Titanium Mobile: one code base. With Tianium you'll have one project for your iPhone and Android app. One code base. Business logic will be the same code. There will be some UI work (remember Android is fragmented, diffrerent screen resolution, CPUs, etc...) Soon, you should be able to add BlackBerry to that (in closed beta for a few months now) and iOS universal binary. Probably other platforms later. You can already do an iPad App, but have to make a separate project, no universal binary for now (there is a walkaround I think) but that should be in the next release.
Learning curve: if you know how to code Javascript (TiMob) or .Net (which is your case), you'll be doing apps really quickly.
I heard from an experienced iOS developer who also works with Titanium that it is much faster to do an app with Titanium than with ObjC.
iOS only?
If you're planning to make iOS apps only, full time, for the next few years, you should learn Objective C. This is what will provide you the best tools, always up to date with great documentation.
Good luck!