Fusion.Engine.Common.AtomCollection.this C# (CSharp) Method

this() public method

public this ( string atom ) : short
atom string
return 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