1 write to Name
Microsoft.CodeAnalysis (1)
Emit\AnonymousTypeKey.cs (1)
37Name = name;
11 references to Name
Microsoft.CodeAnalysis (5)
Emit\AnonymousTypeKey.cs (5)
29/// <see cref="Name"/> is case insensitive. 46(IgnoreCase ? StringComparer.OrdinalIgnoreCase : StringComparer.Ordinal).Equals(Name, other.Name); 58(IgnoreCase ? StringComparer.OrdinalIgnoreCase : StringComparer.Ordinal).GetHashCode(Name))); 99builder.Append(this.Fields[i].Name);
Microsoft.CodeAnalysis.CSharp (2)
Symbols\AnonymousTypes\AnonymousTypeManager.Templates.cs (2)
457var fields = key.Fields.SelectAsArray(f => new AnonymousTypeField(f.Name, Location.None, typeWithAnnotations: default, refKind: RefKind.None, ScopedKind.None)); 485var templateKey = AnonymousTypeDescriptor.ComputeKey(key.Fields, f => f.Name);
Microsoft.CodeAnalysis.VisualBasic (4)
Emit\EditAndContinue\PEDeltaAssemblyBuilder.vb (2)
194Debug.Assert(properties(index).Name Is Nothing) 200Debug.Assert(properties.All(Function(f) Not String.IsNullOrEmpty(f.Name)))
Symbols\AnonymousTypes\AnonymousTypeManager_Templates.vb (2)
165Dim names = key.Fields.SelectAsArray(Function(f) New AnonymousTypeField(f.Name, Location.None, f.IsKey)) 178Dim templateKey = AnonymousTypeDescriptor.ComputeKey(key.Fields, Function(f) f.Name, Function(f) f.IsKey)