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

IsFileName() public static méthode

public static IsFileName ( string filepath, string filenameToCheck ) : bool
filepath string
filenameToCheck string
Résultat bool
	public static bool IsFileName(string filepath, string filenameToCheck)
	{
		return Path.GetFileName(filepath).ToLower() == filenameToCheck.ToLower();
	}