Axiom.Scripting.ScriptableProperties.this C# (CSharp) Метод

this() публичный Метод

public this ( string property ) : string
property string
Результат string
		public string this[ string property ]
		{
			get
			{
				return _owner[ property ];
			}
			set
			{
				_owner[ property ] = value;
			}
		}
	}
ScriptableProperties