I am trying to format a date as it appears in iOS calendar application.
The format is the NSDateFormatterMediumStyle and displays a date such as "Nov 27, 2011”. Documentation
However such a format is not available in the .NET Framework date formats, so I have to use the NSDateFormatter to format the date. Documentation
The problem I have is that in Monotouch I cannot find a method in NSDateFormatter to format the date. In the Apple examples there is a [dateFormatter stringFromDate:date]; method, however it looks that this method is missing in Monotouch or there is an alternative?