Mono.Cecil.Mixin.TypeFullName C# (CSharp) Méthode

TypeFullName() public static méthode

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