ahh listo ya vi como hacerlo bien
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 < a.Length; i++)
{
for (int j = 0; j < a.Length; j++)
{
Console.WriteLine(a[j]);
}
}
}
}
}