using System;
using System.Text.Json;
public class Program
{
public static void Main()
JsonElement? hola = null;
var test = hola.GetValueOrDefault().GetRawText();
Console.WriteLine("Hello World" + test);
}