OpenTween.TwitVideo.CheckValidExtension C# (CSharp) Method

CheckValidExtension() public method

public CheckValidExtension ( string ext ) : bool
ext string
return bool
        public bool CheckValidExtension( string ext )
        {
            if ( Array.IndexOf( this.pictureExt, ext.ToLower() ) > -1 )
                return true;

            if ( Array.IndexOf( this.multimediaExt, ext.ToLower() ) > -1 )
                return true;

            return false;
        }