1 write to Value
Microsoft.VisualStudio.Extensibility.Testing.Xunit (1)
Windows.Win32.PWSTR.g.cs (1)
28 internal PWSTR(char* value) => this.Value = value;
11 references to Value
Microsoft.VisualStudio.Extensibility.Testing.Xunit (11)
Windows.Win32.PWSTR.g.cs (11)
30 public static implicit operator char*(PWSTR value) => value.Value; 34 public static bool operator ==(PWSTR left, PWSTR right) => left.Value == right.Value; 38 public bool Equals(PWSTR other) => this.Value == other.Value; 42 public override int GetHashCode() => unchecked((int)this.Value); 46 public override string ToString() => new PCWSTR(this.Value).ToString(); 48 public static implicit operator PCWSTR(PWSTR value) => new PCWSTR(value.Value); 52 internal int Length => new PCWSTR(this.Value).Length; 58 internal Span<char> AsSpan() => this.Value is null ? default(Span<char>) : new Span<char>(this.Value, this.Length);