4 references to FullName
System.Reflection.Emit (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\SymbolType.cs (1)
359public override string? FullName => TypeNameBuilder.ToString(this, TypeNameBuilder.Format.FullName);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\TypeNameBuilder.cs (2)
238if (format == Format.FullName || format == Format.AssemblyQualifiedName) 297Format genericArgumentsFormat = format == Format.FullName ? Format.AssemblyQualifiedName : format;
System\Reflection\Emit\TypeBuilderImpl.cs (1)
603public override string? FullName => field ??= TypeNameBuilder.ToString(this, TypeNameBuilder.Format.FullName);