Hi guys i need return value from my action, see this sample..
public class B
{
public void test()
{
Action asd = test2;
}
private void test2()
{
Console.WriteLine("LOL");
}
}
This sample work, but i need to return byte from test2 method like this..
public class B
{
public void test()
{
Action asd = test2;
}
private byte test2()
{
Console.WriteLine("LOL");
return 0;
}
}
Any solution?