SuperSimpleViewEngine.Tests.FakeViewEngineHost.ExpandPath C# (CSharp) 메소드

ExpandPath() 공개 메소드

Expands a path to include any base paths
public ExpandPath ( string path ) : string
path string Path to expand
리턴 string
        public string ExpandPath(string path)
        {
            return this.ExpandPathCallBack != null ? this.ExpandPathCallBack.Invoke(path) : path;
        }