ACAT.Lib.Core.Utility.FileUtils.GetSkinsImagePath C# (CSharp) Метод

GetSkinsImagePath() публичный статический Метод

For the specified imaagefile, gets the fully qualified path to it for the spcified skin
public static GetSkinsImagePath ( string skin, string imageFile ) : String
skin string skin name
imageFile string image file name
Результат String
        public static String GetSkinsImagePath(string skin, string imageFile)
        {
            var fullPath = Path.Combine(GetUserSkinsDir(), skin, imageFile);
            return File.Exists(fullPath) ? fullPath : Path.Combine(GetSkinsDir(), skin, imageFile);
        }