How do i Invoke items so the TestAction do write out "s.Hello"? Right now i don't do anything, it jumps over the "action = s.." line.
Or is the another way to do this? Since i don't want to return any code i use the Action instead of Func
I just started to work with Action.
public class Items
{
public string Hello { get; set; }
}
public class TestClass
{
public void TestAction(Action<Items> action)
{
action = s => Console.WriteLine(s.Hello);
}
public TestClass()
{
TestAction(b => b.Hello = "Hello world!");
}
}