Can someone please explain the below code. Here, name ?? stands for nullable types if its null then what is = data?.name;
string name = req.Query[“name”];
dynamic data = JsonConvert.DeserializeObject(requestBody);
name ??= data?.name;
I didnt get the proper result
New contributor
Imaya Thiruppathirayar is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.