MonoTouch.Dialog.JsonObjectExtensions.b C# (CSharp) 메소드

b() 공개 정적인 메소드

public static b ( this json, string name ) : bool
json this
name string
리턴 bool
		public static bool b(this JsonObject json, string name){
			if (json!=null && json.ContainsKey(name))
				return json[name];
			
			return false;
		}