Mono.Cecil.Mixin.TypeFullName C# (CSharp) 메소드

TypeFullName() 공개 정적인 메소드

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