Mono.Cecil.Mixin.TypeFullName C# (CSharp) Method

TypeFullName() public static method

public static TypeFullName ( this self ) : string
self this
return string
        public static string TypeFullName(this TypeReference self)
        {
            return string.IsNullOrEmpty (self.Namespace)
                ? self.Name
                : self.Namespace + '.' + self.Name;
        }