Ejemplo n.º 1
0
        public string GetSceneOrFileName()
        {
            if (SceneName.IsNotNullOrWhiteSpace())
            {
                return(SceneName);
            }

            if (RelativePath.IsNotNullOrWhiteSpace())
            {
                return(System.IO.Path.GetFileName(RelativePath));
            }

            return(string.Empty);
        }