Cortar Strings utilizando delimitadores
1 2 |
teste = uplAtestado.PostedFile.FileName; string[] valores = teste.Split(new char[] { '\\' }); |
1 2 |
teste = uplAtestado.PostedFile.FileName; string[] valores = teste.Split(new char[] { '\\' }); |