SuperSimpleViewEngine.Tests.FakeViewEngineHost.ExpandPath C# (CSharp) Method

ExpandPath() public method

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