Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            var result1 = SamplesWithSpan.StringTrim_With_Span();

            Console.WriteLine($"With Span: {new string(result1)}");

            var result2 = SamplesWithoutSpan.StringTrim_Without_Span();

            Console.WriteLine($"WithOUT Span: {result2}");
        }
Ejemplo n.º 2
0
 public void NewtonsftJson()
 {
     SamplesWithoutSpan.Json_Serialize_Without_Span();
 }