StoryTeller.Model.Persistence.Suite.SuitePathOf C# (CSharp) 메소드

SuitePathOf() 공개 정적인 메소드

public static SuitePathOf ( string path ) : string
path string
리턴 string
        public static string SuitePathOf(string path)
        {
            return path.Split('/').Reverse().Skip(1).Reverse().Join("/");
        }