using System;
namespace System.Runtime.InteropServices
{
/// Marshals data of type VT_BSTR from managed to unmanaged code. This class cannot be inherited.
// Token: 0x020002F2 RID: 754
[ComVisible(true)]
[Serializable]
public sealed class BStrWrapper
{
/// Initializes a new instance of the class with the specified object.
/// The object to wrap and marshal as VT_BSTR.
// Token: 0x060021BE RID: 8638 RVA: 0x00078FE4 File Offset: 0x000771E4
public BStrWrapper(string value)
{
this._value = value;
}
/// Gets the wrapped object to marshal as type VT_BSTR.
/// The object wrapped by .
// Token: 0x1700063A RID: 1594
// (get) Token: 0x060021BF RID: 8639 RVA: 0x00078FF4 File Offset: 0x000771F4
public string WrappedObject
{
get
{
return this._value;
}
}
// Token: 0x04000CC6 RID: 3270
private string _value;
}
}