IronRuby.Builtins.RubyStruct.Info.TryGetIndex C# (CSharp) Method

TryGetIndex() private method

private TryGetIndex ( string name, int &index ) : bool
name string
index int
return bool
            internal bool TryGetIndex(string/*!*/ name, out int index) {
                return _nameIndices.TryGetValue(name, out index);
            }