1 write to Value
System.Private.Windows.Core (1)
_generated\122\Windows.Win32.HSTRING.g.cs (1)
36 internal HSTRING(void* value) => this.Value = value;
9 references to Value
System.Private.Windows.Core (9)
_generated\122\Windows.Win32.HSTRING.g.cs (9)
44 internal bool IsNull => Value == default; 46 public static implicit operator void*(HSTRING value) => value.Value; 50 public static bool operator ==(HSTRING left, HSTRING right) => left.Value == right.Value; 54 public bool Equals(HSTRING other) => this.Value == other.Value; 58 public override int GetHashCode() => unchecked((int)this.Value); 60 public override string ToString() => $"0x{(nuint)this.Value:x}"; 62 public static implicit operator IntPtr(HSTRING value) => new IntPtr(value.Value);