本文介绍了这两个代表语句之间的区别是什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在看代表的第一次,不知道的温差为这两种风格之间的东西。
I'm looking at delegates for the first time and wondered what the differnce is between these two styles.
OfferList.NextPage += delegate(int page)
{
OnNextPage(page);
};
void OnNextPage(int page)
{
...
}
和
Toolbar.OfferBookmarkRemoved += new OfferBookmarkRemoved(OnOfferBookmarkRemoved);
void OnOfferBookmarkRemoved(int offerId)
{
...
}
在此先感谢。
Thanks in advance.
推荐答案
第一个是一个的,第二个是出了名的方法。
The first one is an Anonymous Method, and the second is a Name Method.
这篇关于这两个代表语句之间的区别是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!