Rune.GetRuneAt(String, Int32) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取在字符串中指定位置开始的 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 的起始位置。
返回
从 input
中的指定 index
处获取的 rune。
例外
input
为 null
。
index
不引用 input
中有效标量值的开头。
index
超出了 input
的范围。
注解
如果input
为null
、index
不在范围内或未引用有效标量值的input
开头,index
则引发异常。