
Is there a problem with this code?
private void SetCameraFollowFunc(Func cameraFollowFunc) { }
SetCameraFollowFunc(() => new Vector3(1, 0, 0));
A) No
B) Should be: SetCameraFollowFunc(() => return new Vector3(1, 0, 0));
C) Should be: SetCameraFollowFunc((Vector3(1, 0, 0)) => { });
(answer in reply below)
English

