Ext.Net.DefaultTypeConverter.GetXType C# (CSharp) Method

GetXType() private method

private GetXType ( string value ) : string
value string
return string
        public static string GetXType(string value)
        {
            string xtype;
            xtypesDictionary.TryGetValue(value, out xtype);
            return xtype ?? value;
        }
    }