C#???????è??????
???????????? ???????[ 2013/8/21 10:09:19 ] ????????
????????
public class Mouse
{
public string Name { get; set; }
public Mouse(Cat cat)
{
cat.Scream += new Cat.ScreamEventHandler(cat_Scream);
cat.Scream += this.RunAway;
}
public void RunAway(object sender?? ScreamEventArgs e)
{
Cat c = (Cat)sender;
Console.WriteLine("{0} coming??she said:"{1}"??{2} running!(Running...)"?? c.Name?? e.Msg?? this.Name);
}
void cat_Scream(object sender?? ScreamEventArgs e)
{
Cat c = (Cat)sender;
Console.WriteLine("{0} coming??she said:"{1}"??{2} running!"?? c.Name?? e.Msg?? this.Name);
}
}
???????????ж????.net Framework ????巽???????????????????????л??????????????è????????????
public class ScreamEventArgs
{
public readonly string Msg;
public ScreamEventArgs(string msg)
{
this.Msg = msg;
}
}
??????
???·???
??????????????????
2023/3/23 14:23:39???д?ò??????????
2023/3/22 16:17:39????????????????????Щ??
2022/6/14 16:14:27??????????????????????????
2021/10/18 15:37:44???????????????
2021/9/17 15:19:29???·???????·
2021/9/14 15:42:25?????????????
2021/5/28 17:25:47??????APP??????????
2021/5/8 17:01:11