Create NSDate Monotouch
I am trying to take a date string and turn it into a specific NSDate (eg. July 1, 1981), but I don't see and methods for setting the date. Does anyone know how to accomplish this? Perhaps convert a DateTime object to NSDate? The easiest way is to set it from DateTime. REVISION: The NSDate conversion operators are now explicit, not implicit anymore! I updated the example below. If you look at the NSDate prototype you will find two operators: public static explicit operator NSDate(DateTime dt); public static explicit operator DateTime(NSDate d); These two will do the conversion for you. Explicit