[随]下了个windows live write 来玩玩
对于我们来说,写Blog,更多的是和代码打交道的。。。所以去网站下了个代码高亮的插件,如果,你看见
了这篇随笔,那代表我发表成功了,下面测试下,发点图片和代码:
---------------------------------------------------------------------------------------
下面,粘贴代码看看,如图:
显示结果如下:
<html>
<head>
<title>Hello World!</title>
<script Language="C#" runat="server" >
void Page_Load()
{
Text1.Text = "Hello World!";
}
</script>
</head>
<body>
<asp:Label id="Text1" runat="server" />
</body>
</html>
----再随笔截取点代码粘贴--------------
using System;
namespace 委托
{
public class personInfo
{
public string oleName;
public string newName;
}
//定义委托类型
public delegate void PersonDelegate(personInfo info);
public class person
{
string _name; //姓名
//定义事件 changeName:事件名
public event PersonDelegate changeName;
public string Name
{
get{return _name;}
set
{
//当姓名改变的时候,引发一个事件
if(_name != value)
{
personInfo e = new personInfo();
e.oleName = _name;
e.newName = value;
changeName(e);//触发事件
_name = value;
}
}
}
public person()
{
}
}
}