I am trying to convert a char to string to use in split (), but it is not advancing
string path = HttpContext.Current.Request.Url.AbsolutePath;
path = path.ToString();
string[] caminho = path.Split("/");
I get the following error Argumento 1:Não é possivel converter string para char
Do you have any way of doing this?
this using C # mvc asp.net