Hasta el momento lo que tengo es esto, pero me esta faltando lo del for
Citar
using System;
using System.Collections.Generic;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
string sasa;
string[] a;
sasa="asd/fgfdf/fff/243/dssds";
a = sasa.Split('/');
for (int i = 0; i < sasa.Length; i++)
{
Console.WriteLine(a);
}
}
}
}
using System.Collections.Generic;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
string sasa;
string[] a;
sasa="asd/fgfdf/fff/243/dssds";
a = sasa.Split('/');
for (int i = 0; i < sasa.Length; i++)
{
Console.WriteLine(a);
}
}
}
}
Me gustaria saber que tengo que cambiar para que haga lo que quiero.