1 write to Name
Microsoft.CodeAnalysis (1)
Emit\AnonymousTypeKey.cs (1)
37
Name
= 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
)));
99
builder.Append(this.Fields[i].
Name
);
Microsoft.CodeAnalysis.CSharp (2)
Symbols\AnonymousTypes\AnonymousTypeManager.Templates.cs (2)
457
var fields = key.Fields.SelectAsArray(f => new AnonymousTypeField(f.
Name
, Location.None, typeWithAnnotations: default, refKind: RefKind.None, ScopedKind.None));
485
var templateKey = AnonymousTypeDescriptor.ComputeKey(key.Fields, f => f.
Name
);
Microsoft.CodeAnalysis.VisualBasic (4)
Emit\EditAndContinue\PEDeltaAssemblyBuilder.vb (2)
194
Debug.Assert(properties(index).
Name
Is Nothing)
200
Debug.Assert(properties.All(Function(f) Not String.IsNullOrEmpty(f.
Name
)))
Symbols\AnonymousTypes\AnonymousTypeManager_Templates.vb (2)
165
Dim names = key.Fields.SelectAsArray(Function(f) New AnonymousTypeField(f.
Name
, Location.None, f.IsKey))
178
Dim templateKey = AnonymousTypeDescriptor.ComputeKey(key.Fields, Function(f) f.
Name
, Function(f) f.IsKey)