I'm wondering what's is the difference between this two uses of Add listener on c#. On my script, both are working. But I guess there should be a difference ? Thanks !
btn.onClick.AddListener(() => PickAPuzzle());
btn.onClick.AddListener (PickAPuzzle);