C#随笔

目录


string

方法

IndexOf与IndexOfAny

char[] ch = { 's', 'c', 'b' };
string str = "acsdfgdfgchacscdsad";
int lbl = 0;
lbl = str.IndexOfAny(ch, 5, 5);

IndexOfAny与IndexOf类似,区别在于可以搜索在一个字符串中,出现一个字符数组中任意字符的第一次出现的位置。

上一篇:给自定义控件(Web Control)添加事件的几种方法。前两种方法可以不实现IPostBackEventHandler


下一篇:(七十九)c#Winform自定义控件-导航菜单