13 references to Format
System.Reflection.Emit (13)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\SymbolType.cs (3)
359public override string? FullName => TypeNameBuilder.ToString(this, TypeNameBuilder.Format.FullName); 361public override string? AssemblyQualifiedName => TypeNameBuilder.ToString(this, TypeNameBuilder.Format.AssemblyQualifiedName); 365return TypeNameBuilder.ToString(this, TypeNameBuilder.Format.ToString)!;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\TypeNameBuilder.cs (9)
236internal static string? ToString(Type type, Format format) 238if (format == Format.FullName || format == Format.AssemblyQualifiedName) 266private void AddAssemblyQualifiedName(Type type, Format format) 290if (rootType.IsGenericType && (!rootType.IsGenericTypeDefinition || format == Format.ToString)) 297Format genericArgumentsFormat = format == Format.FullName ? Format.AssemblyQualifiedName : format; 309if (format == Format.AssemblyQualifiedName)
System\Reflection\Emit\TypeBuilderImpl.cs (1)
603public override string? FullName => field ??= TypeNameBuilder.ToString(this, TypeNameBuilder.Format.FullName);