AGS.Editor.DataFileWriter.CompiledCustomProperties.this C# (CSharp) Method

this() public method

public this ( string name ) : string
name string
return string
            public string this[string name]
            {
                get
                {
                    int idx = _names.IndexOf(name);
                    if (idx == -1) return null;
                    return _values[idx];
                }
            }