1. Frst和FirstOrDefault
1. Fist
如果查询的数据不存在, 则抛System.InvalidOperationException异常
2. FirstOrdefault
如果查询的数据不存在, 则返回 null
2. => lamba 表达式
3. Array.IndexOf
搜索 Array 对象的指定元素并返回该元素的索引。 此函数是静态的,可在不创建对象实例的情况下调用。
var indexVar = Array.indexOf(array, item, start);
术语 |
定义 |
---|---|
array |
要搜索的数组。 |
item |
要在数组中查找的对象。 |
startIndex |
(可选)指定在数组中搜索的起始元素的索引号。 |
4. using 三中使用方式
来自:http://www.cnblogs.com/fashui/archive/2011/09/29/2195061.html
1.using指令
例如:using System; 一般都会出现在*.cs中。
2.using别名。using + 别名 = 包括详细命名空间信息的具体的类型。
这种做法有个好处就是当同一个cs引用了两个不同的命名空间,但两个命名空间都包括了一个相同名字的类型的时候。当需要用到这个类型的时候,就每个地方都要用详细命名空间的办法来区分这些相同名字的类型。而用别名的方法会更简洁,用到哪个类就给哪个类做别名声明就可以了。注意:并不是说两个名字重复,给其中一个用了别名,另外一个就不需要用别名了,如果两个都要使用,则两个都需要用using来定义别名的。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
using System;
using aClass = NameSpace1.MyClass;
using bClass = NameSpace2.MyClass;
namespace NameSpace1
{ public class MyClass
{
public override string ToString()
{
return "You are in NameSpace1.MyClass" ;
}
}
} namespace NameSpace2
{ class MyClass
{
public override string ToString()
{
return "You are in NameSpace2.MyClass" ;
}
}
} namespace testUsing
{ using NameSpace1;
using NameSpace2;
/// <summary>
/// Class1 的摘要说明。
/// </summary>
class Class1
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main( string [] args)
{
//
// TODO: 在此处添加代码以启动应用程序
//
aClass my1 = new aClass();
Console.WriteLine(my1);
bClass my2 = new bClass();
Console.WriteLine(my2);
Console.WriteLine( "Press any key" );
Console.Read();
}
}
} |
3.using语句,定义一个范围,在范围结束时处理对象。
场景:
当在某个代码段中使用了类的实例,而希望无论因为什么原因,只要离开了这个代码段就自动调用这个类实例的Dispose。
要达到这样的目的,用try...catch来捕捉异常也是可以的,但用using也很方便。
1
2
3
4
|
using (Class1 cls1 = new Class1(), cls2 = new Class1())
{ // the code using cls1, cls2
} // call the Dispose on cls1 and cls2
|
5. 数组的操作
Array.Sort(nums/*数组名称*/);
Array.Reverse(nums/*数组名称*/);
6. IndexOf
public static void UseIndexOf()
{
string str = "hello cat. hi boatlet. How are you cat? Fine, Thanks!";
//搜索字符串,初始位置
int index = str.IndexOf("cat", 0);
int i = 1;
if(index != -1)
{
Console.WriteLine("cat 第{0}次出现位置为{1}", i, index);
while(index != -1)
{
index = str.IndexOf("cat", index + 1);
i++;
if(index == -1)
{
break;
}
Console.WriteLine("cat 第{0}次出现位置为{1}", i, index);
}
}