Fusion.Engine.Common.AtomCollection.this C# (CSharp) 메소드

this() 공개 메소드

public this ( string atom ) : short
atom string
리턴 short
		public short this[ string atom ] {
			get {
				short id;
				if (dictionary.TryGetValue(atom, out id)) {
					return id;
				} else {
					return -1;
				}
			}
		} 

Same methods

AtomCollection::this ( short id ) : string