String Constructor (Char*) (System)

Switch View :
ScriptFree
.NET Framework Class Library
String Constructor (Char*)

Initializes a new instance of the String class to the value indicated by a specified pointer to an array of Unicode characters.

This API is not CLS-compliant. 

Namespace:  System
Assembly:  mscorlib (in mscorlib.dll)
Syntax

Visual Basic
Visual Basic does not support APIs that consume or return unsafe types.
C#
[CLSCompliantAttribute(false)]
public String(
	char* value
)
Visual C++
[CLSCompliantAttribute(false)]
public:
String(
	wchar_t* value
)
F#
[<CLSCompliantAttribute(false)>]
new : 
        value:nativeptr<char> -> String

Parameters

value
Type: System.Char*
A pointer to a null-terminated array of Unicode characters.
Exceptions

Exception Condition
ArgumentOutOfRangeException

The current process does not have read access to all the addressed characters.

ArgumentNullException

value is null.

ArgumentException

value specifies an array that contains an invalid Unicode character, or value specifies an address less than 64000.

Remarks

If value is a null pointer, an Empty instance is initialized.

This constructor copies the sequence of Unicode characters at the specified pointer until a null character (hexadecimal 0x0000) is reached.

If the specified array is not null-terminated, the behavior of this constructor is system dependent. For example, such a situation might cause an access violation.

In C#, this constructor is defined only in the context of unsafe code.

Version Information

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1
.NET Framework Security

  • SecurityCriticalAttribute  

    requires full trust for the immediate caller. This member cannot be used by partially trusted or transparent code.

Platforms

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
See Also

Reference