diff options
author | Jiyoung Yun <jy910.yun@samsung.com> | 2017-04-13 14:17:19 +0900 |
---|---|---|
committer | Jiyoung Yun <jy910.yun@samsung.com> | 2017-04-13 14:17:19 +0900 |
commit | a56e30c8d33048216567753d9d3fefc2152af8ac (patch) | |
tree | 7e5d979695fc4a431740982eb1cfecc2898b23a5 /src/mscorlib/src/System/Runtime/InteropServices/BStrWrapper.cs | |
parent | 4b11dc566a5bbfa1378d6266525c281b028abcc8 (diff) | |
download | coreclr-a56e30c8d33048216567753d9d3fefc2152af8ac.tar.gz coreclr-a56e30c8d33048216567753d9d3fefc2152af8ac.tar.bz2 coreclr-a56e30c8d33048216567753d9d3fefc2152af8ac.zip |
Imported Upstream version 2.0.0.11353upstream/2.0.0.11353
Diffstat (limited to 'src/mscorlib/src/System/Runtime/InteropServices/BStrWrapper.cs')
-rw-r--r-- | src/mscorlib/src/System/Runtime/InteropServices/BStrWrapper.cs | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/mscorlib/src/System/Runtime/InteropServices/BStrWrapper.cs b/src/mscorlib/src/System/Runtime/InteropServices/BStrWrapper.cs index d36f8cfa39..77c38139cd 100644 --- a/src/mscorlib/src/System/Runtime/InteropServices/BStrWrapper.cs +++ b/src/mscorlib/src/System/Runtime/InteropServices/BStrWrapper.cs @@ -11,11 +11,12 @@ ** =============================================================================*/ -namespace System.Runtime.InteropServices { - - using System; - using System.Security; +using System; +using System.Security; + +namespace System.Runtime.InteropServices +{ [Serializable] public sealed class BStrWrapper { @@ -29,9 +30,9 @@ namespace System.Runtime.InteropServices { m_WrappedObject = (String)value; } - public String WrappedObject + public String WrappedObject { - get + get { return m_WrappedObject; } |