ABB.Swum.ContextBuilder.ConstructTypeName C# (CSharp) Method

ConstructTypeName() public static method

Extracts the type name from a type srcML element. A type element may contain several name and type modifier elements. This function returns only the actual type name, ignoring any access modifiers, such as static, private or public. Type modifiers such as '*' or '&' are treated as part of the type name and concatenated with the name text.
typeElement does not represent a type element.
public static ConstructTypeName ( System.Xml.Linq.XElement typeElement ) : string
typeElement System.Xml.Linq.XElement A type srcML element.
return string
        public static string ConstructTypeName(XElement typeElement) {
            bool dummy;
            return ConstructTypeName(typeElement, out dummy);
        }

Same methods

ContextBuilder::ConstructTypeName ( System.Xml.Linq.XElement typeElement, bool &isPrimitive ) : string