Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道当我像下面提到的代码那样创建鼠标离开事件时,它是否真的在内存中创建了一个方法,比如设计时鼠标进入事件。我在 C# 中使用 WinForms。有一个循环将iRow,iColumn值初始化为 8x8 网格的面板。
iRow,iColumn
chessBoardPanels[iRow, iColumn].MouseLeave += (s, e) => { (s as Panel).BackColor = temp;};
是的,内存中有一种方法。当您使用lambda 表达式时,您传递的是对匿名方法的引用。