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;
        }