BatchGuy.App.CreateX264BatchFileForm.IsAviSynthFile C# (CSharp) Method

IsAviSynthFile() private method

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