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

d() public static method

public static d ( this json, string name ) : Nullable
json this
name string
return Nullable
		public static Nullable<double> d(this JsonObject json, string name){
			if (json!=null && json.ContainsKey(name))
				return json[name];
			
			return null;
		}