2 implementations of ReflectionNotation
ILAssembler (2)
EntityRegistry.cs (2)
1234
public string
ReflectionNotation
{ get; }
1249
public string
ReflectionNotation
{ get; set; } = string.Empty;
5 references to ReflectionNotation
ILAssembler (5)
GrammarVisitor.cs (5)
889
blob.WriteUTF8((name as EntityRegistry.IHasReflectionNotation)?.
ReflectionNotation
?? "");
1392
blob.WriteSerializedString(notation.
ReflectionNotation
);
4623
attributeName = reflectionNotation.
ReflectionNotation
;
4799
blob.WriteSerializedString((VisitClassName(context.className()).Value as EntityRegistry.IHasReflectionNotation)?.
ReflectionNotation
?? "");
4830
blob.WriteSerializedString(VisitClassName(className).Value is EntityRegistry.IHasReflectionNotation reflection ? reflection.
ReflectionNotation
: string.Empty);