使用 C# 匿名委托,我们可以避免声明额外的方法,我知道在 VB.NET 中它们不可用,但是有没有我可以使用的设计模式,这样我就可以避免每次都编写额外的方法?我需要它用于 SPSecurity.RunWithElevatedPrivileges,它将在我们的代码中使用很多次。
例如
SPSecurity.RunWithElevatedPrivileges(
delegate()
{
//some code here.
}
);
我希望在 VB.NET 中执行以下操作:
using RunWithElevatedPrivil()
'some code here.
end using