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