Blighttp.WebServer.ConvertPath C# (CSharp) 메소드

ConvertPath() 개인적인 메소드

private ConvertPath ( string path ) : List
path string
리턴 List
        List<string> ConvertPath(string path)
        {
            List<string> tokens = path.Tokenise("/");
            var output = from x in tokens where x.Length > 0 select HttpUtility.UrlDecode(x);
            return output.ToList();
        }