CSKernelFile.cFile.getFileName C# (CSharp) Méthode

getFileName() public static méthode

public static getFileName ( string fullFileName ) : string
fullFileName string
Résultat string
        public static string getFileName(string fullFileName)
        {
            return getFileWithoutExt(fullFileName) + "." + getFileExt(fullFileName);
        }