AGS.Editor.DataFileWriter.CompiledCustomProperties.this C# (CSharp) Метод

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

public this ( string name ) : string
name string
Результат string
            public string this[string name]
            {
                get
                {
                    int idx = _names.IndexOf(name);
                    if (idx == -1) return null;
                    return _values[idx];
                }
            }