추천도서 64권 :
https://iostream.tistory.com/64
추천도서 50권 :
https://www.sangkon.com/2018/08/27/good_books_for_dev_2018/
Dec 21, 2018
Dec 18, 2018
Dec 6, 2018
Action(arg) vs Action.Invoke(arg)
Action(arg) : Cannot use Null-Conditional operator
Action.Invoke(arg) : Can use Null-Conditional operator with C# 6
----------------
Action(arg) :
Action DoSomething = null;
if(DoSomething != null)
DoSomething();
C#6 Action.Invoke(arg) :
Action DoSomething = null;
DoSomething?.Invoke();
Action.Invoke(arg) : Can use Null-Conditional operator with C# 6
----------------
Action(arg) :
Action DoSomething = null;
if(DoSomething != null)
DoSomething();
C#6 Action.Invoke(arg) :
Action DoSomething = null;
DoSomething?.Invoke();
Subscribe to:
Posts (Atom)