System.Runtime.InteropServices.BStrWrapper
namespace System.Runtime.InteropServices
{
public sealed class BStrWrapper
{
public string WrappedObject { get; }
public BStrWrapper(object value);
public BStrWrapper(string value);
}
}