1 write to Value
System.Private.Windows.GdiPlus (1)
Windows.Win32.PathData.g.cs (1)
29 internal PathData(nint value) => this.Value = value;
7 references to Value
System.Private.Windows.GdiPlus (7)
Windows.Win32.PathData.g.cs (7)
31 public static implicit operator nint(PathData value) => value.Value; 35 public static bool operator ==(PathData left, PathData right) => left.Value == right.Value; 39 public bool Equals(PathData other) => this.Value == other.Value; 43 public override int GetHashCode() => this.Value.GetHashCode(); 45 public override string ToString() => $"0x{this.Value:x}";