using NathanMcRae; using System.Text; string testString1 = "column1\tcolumn2\tcolumnthree\\nyep\nvalue1\tvalue\\\\twoo\tvaluetrhee\nthis\\nis\\na\\nvalue\tnother\tno\\ther"; SaneTsv parsed = SaneTsv.Parse(Encoding.UTF8.GetBytes(testString1)); // See https://aka.ms/new-console-template for more information Console.WriteLine("Hello, World!");