C# 匿名デリゲートを使用すると、余分なメソッドの宣言を回避できます。VB.NET では使用できないことはわかっていますが、毎回余分なメソッドを作成するのを避けるために使用できる設計パターンはありますか? コードで何度も使用される SPSecurity.RunWithElevatedPrivileges に必要です。
例えば
SPSecurity.RunWithElevatedPrivileges(
delegate()
{
//some code here.
}
);
私はVB.NETで次のようなことをしたい:
using RunWithElevatedPrivil()
'some code here.
end using