Mono.CSharp.Operator.GetMetadataName C# (CSharp) Method

GetMetadataName() public static method

public static GetMetadataName ( string name ) : string
name string
return string
        public static string GetMetadataName(string name)
        {
            for (int i = 0; i < names.Length; ++i) {
                if (names [i] [0] == name)
                    return names [i] [1];
            }
            return null;
        }

Same methods

Operator::GetMetadataName ( OpType ot ) : string