Rune.GetRuneAt(String, Int32) 方法

定义

获取在字符串中指定位置开始的 Rune

public:
 static System::Text::Rune GetRuneAt(System::String ^ input, int index);
public static System.Text.Rune GetRuneAt (string input, int index);
static member GetRuneAt : string * int -> System.Text.Rune
Public Shared Function GetRuneAt (input As String, index As Integer) As Rune

参数

input
String

从中创建 rune 的字符串。

index
Int32

input 中创建 rune 的起始位置。

返回

Rune

input 中的指定 index 处获取的 rune。

例外

inputnull

index 不引用 input 中有效标量值的开头。

index 超出了 input 的范围。

注解

如果inputnullindex不在范围内或未引用有效标量值的input开头,index则引发异常。

适用于