MonoTouch.Dialog.JsonObjectExtensions.dt C# (CSharp) Method

dt() public static method

public static dt ( this json, string name ) : System.DateTime
json this
name string
return System.DateTime
		public static DateTime dt(this JsonObject json, string name){
			if (json!=null && json.ContainsKey(name))
				return DateTime.Parse(json.s(name));//json[name];
			
			return DateTime.MinValue;
		}
	}