Marshal.StringToCoTaskMemAnsi Method
Copies the contents of a managed String to a block of memory allocated from the unmanaged COM task allocator.
Namespace: System.Runtime.InteropServices
Assembly: mscorlib (in mscorlib.dll)
Parameters
- s
- Type: System.String
A managed string to be copied.
Return Value
Type: System.IntPtrAn integer representing a pointer to the block of memory allocated for the string, or 0 if s is null.
| Exception | Condition |
|---|---|
| OutOfMemoryException | There is insufficient memory available. |
| ArgumentOutOfRangeException | The s parameter exceeds the maximum length allowed by the operating system. |
StringToCoTaskMemAnsi is useful for custom marshaling or when mixing managed and unmanaged code. Because this method allocates the unmanaged memory required for a string, always free the memory by calling FreeCoTaskMem. This method provides the opposite functionality of Marshal.PtrToStringAnsi. The characters of the string are copied as ANSI characters.
- SecurityCriticalAttribute
requires full trust for the immediate caller. This member cannot be used by partially trusted or transparent code.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.