BatchGuy.App.CreateX264BatchFileForm.IsAviSynthFile C# (CSharp) Méthode

IsAviSynthFile() private méthode

private IsAviSynthFile ( string file ) : bool
file string
Résultat bool
        private bool IsAviSynthFile(string file)
        {
            if (file.EndsWith(_avsExtension))
                return true;
            else
                return false;
        }
CreateX264BatchFileForm