2 instantiations of AnonymousTypeKeyField
Microsoft.CodeAnalysis.CSharp (2)
Emitter\EditAndContinue\PEDeltaAssemblyBuilder.cs (1)
220builder.Add(new AnonymousTypeKeyField(fieldName, isKey: false, ignoreCase: false));
Symbols\AnonymousTypes\SynthesizedSymbols\AnonymousType.TemplateSymbol.cs (1)
95var properties = Properties.SelectAsArray(p => new AnonymousTypeKeyField(p.Name, isKey: false, ignoreCase: false));
7 references to AnonymousTypeKeyField
Microsoft.CodeAnalysis (5)
Emit\AnonymousTypeKey.cs (5)
16internal readonly struct AnonymousTypeKeyField : IEquatable<AnonymousTypeKeyField> 42public bool Equals(AnonymousTypeKeyField other) 51return Equals((AnonymousTypeKeyField)obj); 66internal readonly ImmutableArray<AnonymousTypeKeyField> Fields; 68internal AnonymousTypeKey(ImmutableArray<AnonymousTypeKeyField> fields, bool isDelegate = false)
Microsoft.CodeAnalysis.CSharp (2)
Emitter\EditAndContinue\PEDeltaAssemblyBuilder.cs (2)
151var builder = ArrayBuilder<AnonymousTypeKeyField>.GetInstance(); 210ArrayBuilder<AnonymousTypeKeyField> builder)