Answer (Choose 1 answer)
public class Employee{
public string firstName {get; set; }
[Jsonlgnore]public string lastName {get; set; }
}
class Program{
static void Main(string[] args){
string empJson = @"{
""firstName"".""John"",
""lastName"".""Doe""
}":
}
}
var emp = JsonSerializer. Deserialize<Employee>(empJson):Console.WriteLine($"{emp.firstName}: (emp.lastName}"):
Console.ReadKey():
Which one of the following is the output of the above code?
A. Doe:
B. John: Doe
C. John:
D. Compile-time error
Q: 34