Closed GoogleCodeExporter closed 8 years ago
[deleted comment]
Was able to correct the issue. Based on the other defect that posted the
correction but din't include a code example. Below is the code to correct the
above issue:
public delegate CHandler CFunc(int x, int y);
public class DependantComponent4
{
private readonly CFunc _func;
public DependantComponent4(CFunc func)
{
_func = func;
}
public CHandler CreateDependancy(int a, int b)
{
return _func(a, b);
}
}
Original comment by blgrec...@gmail.com
on 4 May 2013 at 4:25
Original comment by travis.illig
on 14 May 2013 at 1:00
Original issue reported on code.google.com by
blgrec...@gmail.com
on 4 May 2013 at 3:36