CSharpUML.Strings.ToCSharpType C# (CSharp) Метод

ToCSharpType() публичный статический Метод

public static ToCSharpType ( this s ) : string
s this
Результат string
        public static string ToCSharpType(this string s)
        {
            return s.Replace ("Integer", "int").Replace ("String", "string")
                .Replace ("XNA.", "");
        }