2 overrides of IsValueType
AssemblyStripper (2)
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\TypeDefinition.cs (1)
447 public override bool IsValueType {
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\TypeSpecification.cs (1)
47 public override bool IsValueType {
5 writes to IsValueType
AssemblyStripper (5)
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil.Signatures\SignatureReader.cs (1)
717 decType.IsValueType = true;
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\DefaultImporter.cs (1)
132 reference.IsValueType = true;
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\ReflectionHelper.cs (1)
221 reference.IsValueType = true;
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\ReflectionReader.cs (2)
425 coreType.IsValueType = true; 1062 vtr.IsValueType = true;
9 references to IsValueType
AssemblyStripper (9)
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\DefaultImporter.cs (4)
131 if (type.IsValueType && !reference.IsValueType) 166 type = new TypeReference (t.Name, string.Empty, asm, t.IsValueType); 169 type = new TypeReference (t.Name, t.Namespace, asm, t.IsValueType);
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\GenericInstanceType.cs (1)
72 m_isValueType = elementType.IsValueType;
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\ReflectionHelper.cs (1)
220 if (type.IsValueType && !reference.IsValueType)
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\ReflectionReader.cs (1)
409 if (!coreType.IsValueType) {
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\ReflectionWriter.cs (1)
1154 } else if (type.IsValueType) {
.packages\microsoft.dotnet.cilstrip.sources\9.0.0-beta.24324.1\contentFiles\cs\netstandard2.0\Mono.Cecil\TypeSpecification.cs (1)
48 get { return m_elementType.IsValueType; }