1 write to Value
Microsoft.CodeAnalysis (1)
InternalUtilities\EnumField.cs (1)
25this.Value = value;
6 references to Value
Microsoft.CodeAnalysis (6)
InternalUtilities\EnumField.cs (5)
36return string.Format("{{{0} = {1}}}", this.Name, this.Value); 48long diff = unchecked((long)value - (long)sortedFields[mid].Value); // NOTE: Has to match the comparer below. 52while (mid >= start && sortedFields[mid].Value == value) 76int diff = unchecked(((long)field2.Value).CompareTo((long)field1.Value));
SymbolDisplay\AbstractSymbolDisplayVisitor.cs (1)
250var valueAtIndex = fieldAndValue.Value;