1.什么是.Net ?
.NET的精髓在于Web Service.
不常用的foreach循环用法:
2.分隔:
string str="a,b c.d";
string []a=str.Split(new char[3]{',',' ','.'});
foreach (string i in a)
{
Console.Write(i.ToString()+' ');
}
输出:
a
b
c
d
3.继承:
在派生类中访问基类的成员或方法两种方法:
1)c#通过base.<方法>()的方式调用基类的方法成员;
2)通过显式类型转换。
基类:
public class Animal
{
private bool m_sex;
private int m_age;
public bool Sex
{
get { return m_sex; }
set { m_sex = value; }
}
public int Age
{
get { return m_age; }
set { m_age = value; }
}
//虚方法:
public virtual string Introduce()
{
if (Sex)
return "This is a male Animal!";
else
return "This is a female Animal!";
}
继承:public class Dog:Animal
{ }
用override重写方法。
4.访问修饰符:
5.委托:提高程序的扩展性。
Delegate委托类。
与事件绑定,调用方法。
快速启动: 去掉启动屏 在vs目标文件后加 /nosplash
第一章的基础知识很容易掌握,这些基础知识也能让我查漏补缺,重新认识了一些忘却的知识,更新了以前不知道的知识,进一步对.NET了解。
需要继续巩固学习。