using System;
public class Program
{
public static void Main()
var ap = "testando;teste";
var a = ap.Split(";");
Console.WriteLine(a.ToString());
}