SqlChars 생성자

정의

SqlChars 클래스의 새 인스턴스를 초기화합니다.

오버로드

SqlChars()

SqlChars 클래스의 새 인스턴스를 초기화합니다.

SqlChars(Char[])

지정된 문자 배열을 기반으로 SqlChars 클래스의 새 인스턴스를 초기화합니다.

SqlChars(SqlString)

지정된 SqlChars 값을 기반으로 SqlString 클래스의 새 인스턴스를 초기화합니다.

설명

허용되는 SqlChars 최대 길이는 Int32의 공용 언어 런타임 최대 크기(2,147,483,647)로 바인딩됩니다.

SqlChars()

Source:
SQLChars.cs
Source:
SQLChars.cs
Source:
SQLChars.cs

SqlChars 클래스의 새 인스턴스를 초기화합니다.

public:
 SqlChars();
public SqlChars ();
Public Sub New ()

설명

허용되는 SqlChars 최대 길이는 Int32의 공용 언어 런타임 최대 크기(2,147,483,647)로 바인딩됩니다.

추가 정보

적용 대상

SqlChars(Char[])

Source:
SQLChars.cs
Source:
SQLChars.cs
Source:
SQLChars.cs

지정된 문자 배열을 기반으로 SqlChars 클래스의 새 인스턴스를 초기화합니다.

public:
 SqlChars(cli::array <char> ^ buffer);
public SqlChars (char[] buffer);
public SqlChars (char[]? buffer);
new System.Data.SqlTypes.SqlChars : char[] -> System.Data.SqlTypes.SqlChars
Public Sub New (buffer As Char())

매개 변수

buffer
Char[]

Char 배열입니다.

설명

허용되는 SqlChars 최대 길이는 Int32의 공용 언어 런타임 최대 크기(2,147,483,647)로 바인딩됩니다.

null 참조가 전달되면 instance null로 설정됩니다.

추가 정보

적용 대상

SqlChars(SqlString)

Source:
SQLChars.cs
Source:
SQLChars.cs
Source:
SQLChars.cs

지정된 SqlChars 값을 기반으로 SqlString 클래스의 새 인스턴스를 초기화합니다.

public:
 SqlChars(System::Data::SqlTypes::SqlString value);
public SqlChars (System.Data.SqlTypes.SqlString value);
new System.Data.SqlTypes.SqlChars : System.Data.SqlTypes.SqlString -> System.Data.SqlTypes.SqlChars
Public Sub New (value As SqlString)

매개 변수

설명

허용되는 SqlChars 최대 길이는 Int32의 공용 언어 런타임 최대 크기(2,147,483,647)로 바인딩됩니다.

null 참조가 전달되면 instance null로 설정됩니다.

추가 정보

적용 대상