Skip to content

Instantly share code, notes, and snippets.

View tachiken's full-sized avatar

Tachiken tachiken

View GitHub Profile
@tachiken
tachiken / Sample1.cs
Created December 16, 2011 18:53
CS1628対応?
public static Action GenerateHandler(ref MyClass arg1)
{
return delegate()
{
// This make compile error CS1628
// ref または out パラメータ 'arg1' は、匿名メソッド、ラムダ式、またはクエリ式の内部では使用できません
arg1.Property1 = false;
arg1 = arg1.GetNeighbour() ?? arg1;
arg1.Property1 = true;
};