Mono.CSharp.TypeInfo.StructInfo.this C# (CSharp) 메소드

this() 공개 메소드

public this ( string name ) : int
name string
리턴 int
			public int this [string name] {
				get {
					int val;
					if (!field_hash.TryGetValue (name, out val))
						return 0;

					return val;
				}
			}