public void Dispose() { if (_s != IntPtr.Zero) { NativeWinRTMethods.WindowsDeleteString(_s); _s = IntPtr.Zero; } }
public HStringInterop(string s) { _s = s == null ? IntPtr.Zero : NativeWinRTMethods.WindowsCreateString(s); }