コード例 #1
0
ファイル: SecureStringMarshal.cs プロジェクト: wpsmith/corefx
        public static IntPtr SecureStringToCoTaskMemUnicode(SecureString s)
        {
            if (s == null)
            {
                throw new ArgumentNullException("s");
            }

            return(s.ToUniStr());
        }