SuperSimpleViewEngine.Tests.FakeViewEngineHost.ExpandPath C# (CSharp) Méthode

ExpandPath() public méthode

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