System::String::FromUtf8 メソッド

String::FromUtf8(const char *) method

utf8 文字列から String を作成します。

static String System::String::FromUtf8(const char *utf8)
パラメーター説明
utf8const char *utf8 コードページでエンコードされた null 終端文字列へのポインタ。

ReturnValue

String object representing passed string.

参照

String::FromUtf8(const char *, int) method

utf8 文字列から String を作成します。

static String System::String::FromUtf8(const char *utf8, int len)
パラメーター説明
utf8const char *utf8 コードページでエンコードされた文字列へのポインタ。
lenint処理する文字数。

ReturnValue

String object representing passed string.

参照

String::FromUtf8(const std::string&) method

utf8 文字列から String を作成します。

static String System::String::FromUtf8(const std::string &utf8)
パラメーター説明
utf8const std::string&utf8 コードページでエンコードされた文字列へのポインタ。

ReturnValue

String object representing passed string.

参照

String::FromUtf8(const uint8_t *) method

utf8 文字列から String を作成します。

static String System::String::FromUtf8(const uint8_t *utf8)
パラメーター説明
utf8const uint8_t *utf8 コードページでエンコードされた null 終端文字列へのポインタ。

ReturnValue

String object representing passed string.

参照