I have the following code:
var allUsers = new List<string>();
var response = await context
.CallActivityAsync<(List<string> names, int grade)>( "Function", null);
if (response != null) allUsers.AddRange(response.names);
response is a tuple. it is giving a null exception. How to handle null exception for tuple in C#?