Skip to content

Instantly share code, notes, and snippets.

@Gabriela0890
Gabriela0890 / Extrae
Created April 28, 2020 22:27
string lenght
void Extrae (string lin)
{
string aux;
int cont;
aux = "";
cont = 0;
while ((lin.Substring(cont, 1) != ",") && (cont < lin.Length))
{
aux = aux + lin.Substring(cont, 1);