4 instantiations of PCWSTR
Microsoft.VisualStudio.Extensibility.Testing.Xunit (4)
Windows.Win32.PCWSTR.g.cs (1)
37
public static implicit operator PCWSTR(char* value) => new
PCWSTR
(value);
Windows.Win32.PWSTR.g.cs (3)
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;
8 references to PCWSTR
Microsoft.VisualStudio.Extensibility.Testing.Xunit (8)
Windows.Win32.PCWSTR.g.cs (5)
26
: IEquatable<
PCWSTR
>
35
public static explicit operator char*(
PCWSTR
value) => value.Value;
37
public static implicit operator
PCWSTR
(char* value) => new PCWSTR(value);
39
public bool Equals(
PCWSTR
other) => this.Value == other.Value;
41
public override bool Equals(object obj) => obj is
PCWSTR
other && this.Equals(other);
Windows.Win32.PWSTR.g.cs (3)
45
/// <inheritdoc cref="
PCWSTR
.ToString()"/>
48
public static implicit operator
PCWSTR
(PWSTR value) => new PCWSTR(value.Value);
51
/// <inheritdoc cref="
PCWSTR
.Length"/>