I have MonoTouch app which process data from a webservice. This data contains date information which is specific to a timezone. The timezone is UTC +12 which is for New Zealand.
You can do it like:
Datetime date = TimeZoneInfo.ConvertTime(utcDateTime, timeZone);
Just pass the given parameters.