I am new to Net Core, and today i have read the following code :
public void SomeMethod (object? p1, object? p2, object? p3)
Is not clear to me the meaning of question mark in parameter, in Net Framwork a quotation mark after a non nullable type is used to define it as nullable (eg : DateTime?). But object is a nullable type, so i am confused.
What does it mean? Is there a reference where i can get detail of the new syntax without bother this community?