我的代码中有这一行:
if (address.EndsWith("GIF") || (address.EndsWith("BMP") || address.EndsWith("JPEG") || address.EndsWith("TIFF") || address.EndsWith("RAW") || address.EndsWith("PNG")))
例如现在地址变量中的网站地址是:www.test.jpg 那么它永远不会进入IF并跳出/继续。
我希望它在所有扩展名中都大写和小写,例如“GIF”和“gif”我该怎么做?
(子问题如果我想检查文件扩展名 EndsWith("gif" 就足够了,或者我必须在它之前添加一个点,比如 ".gif" 或 ".jpeg" ?)