1 instantiation of Constant
System.Reflection.Metadata (1)
System\Reflection\Metadata\MetadataReader.cs (1)
1204return new Constant(this, handle.RowId);
6 references to Constant
Microsoft.CodeAnalysis (1)
MetadataReader\PEModule.cs (1)
3693var constantRow = MetadataReader.GetConstant(handle);
Microsoft.CodeAnalysis.CSharp.Emit3.UnitTests (2)
Attributes\AttributeTests_WellKnownAttributes.cs (2)
1099var constant = metadataReader.GetConstant(handle); 1188var constant = metadataReader.GetConstant(handle);
System.Reflection.Metadata (1)
System\Reflection\Metadata\MetadataReader.cs (1)
1202public Constant GetConstant(ConstantHandle handle)
System.Reflection.MetadataLoadContext (2)
System\Reflection\TypeLoading\General\Ecma\EcmaDefaultValueProcessing.cs (1)
17Constant constantValue = metadataReader.GetConstant(constantHandle);
System\Reflection\TypeLoading\General\Ecma\MetadataExtensions.cs (1)
19public static Constant GetConstant(this ConstantHandle handle, MetadataReader reader) => reader.GetConstant(handle);