CSharpUML.Tag.ParseType C# (CSharp) Метод

ParseType() публичный Метод

public ParseType ( ) : string
Результат string
        public string ParseType()
        {
            string type = "void";
            if (Content.Contains ("LastKnownName=\"")) {
                type = Content.Split ("LastKnownName=\"") [1].Split ('"') [0]
                    .Replace ("&lt;", "<").Replace ("&gt;", ">");
            }
            return type;
        }

Usage Example

Пример #1
0
        public UmlAttribute(Tag tag, UmlClass classobj)
            : base(tag)
        {
            type = tag.ParseType ();

            commentsKey = Comments.Key (classobj.Name, name);
        }
All Usage Examples Of CSharpUML.Tag::ParseType