Q34_141_20240331131155.jpg | FuOverflow Community
  • Cùng tham gia cộng đồng FuOverflow trên Facebook  www.facebook.com/groups/fuoverflow

  • Ra mắt hệ thống Check điểm các môn thi sớm để về quê tự động, nhanh chóng tại FUO - Check score
    Check không đúng cam kết sẽ hoàn tiền

Q34_141_20240331131155.jpg
Misa

Q34_141_20240331131155.jpg

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