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