CSharpUML.UmlObjectExtensions.ToUml C# (CSharp) Метод

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

public static ToUml ( this publicity ) : string
publicity this
Результат string
        public static string ToUml(this Publicity publicity)
        {
            switch (publicity) {
            case Publicity.Protected:
                return "# ";
            case Publicity.Public:
                return "+ ";
            default:
                return "- ";
            }
        }