BuildReportTool.Util.IsFileOfType C# (CSharp) 메소드

IsFileOfType() 공개 정적인 메소드

public static IsFileOfType ( string filepath, string typeExtenstion ) : bool
filepath string
typeExtenstion string
리턴 bool
	public static bool IsFileOfType(string filepath, string typeExtenstion)
	{
		return filepath.ToLower().EndsWith(typeExtenstion.ToLower());
	}