BuildReportTool.Util.IsFileOfType C# (CSharp) Méthode

IsFileOfType() public static méthode

public static IsFileOfType ( string filepath, string typeExtenstion ) : bool
filepath string
typeExtenstion string
Résultat bool
	public static bool IsFileOfType(string filepath, string typeExtenstion)
	{
		return filepath.ToLower().EndsWith(typeExtenstion.ToLower());
	}