(string str)
| 61 | public IntPtr pointerValue; |
| 62 | |
| 63 | public static PropVariant FromString(string str) |
| 64 | { |
| 65 | var pv = new PropVariant() { |
| 66 | variantType = 31, // VT_LPWSTR |
| 67 | pointerValue = Marshal.StringToCoTaskMemUni(str), |
| 68 | }; |
| 69 | |
| 70 | return pv; |
| 71 | } |
| 72 | |
| 73 | public static PropVariant FromGuid(Guid guid) |
| 74 | { |