BuildReportTool.Util.IsFileName C# (CSharp) Method

IsFileName() public static method

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