2 writes to StringValue
cdac-build-tool (2)
DataDescriptorModel.cs (2)
376private GlobalValue(ulong value) { NumericValue = value; StringValue = string.Empty;} 377private GlobalValue(string value) { StringValue = value; }
5 references to StringValue
cdac-build-tool (5)
DataDescriptorModel.cs (4)
382public bool Equals(GlobalValue other) => other.Kind == Kind && other.NumericValue == NumericValue && other.StringValue == StringValue; 384public override int GetHashCode() => HashCode.Combine(Kind, NumericValue, StringValue); 391KindEnum.String => $"'{StringValue}'",
JsonConverter\GlobalValueJsonConverter.cs (1)
33writer.WriteStringValue(value.StringValue);