来自QueryString的一行bool值

本文关键字:一行 bool QueryString 来自 | 更新日期: 2023-09-27 18:16:25

有没有更好的方式来写这个

            string q = Request.QueryString["q"] ?? string.Empty;
            bool isSearch = q != string.Empty ? true : false;

就像一行语句?

来自QueryString的一行bool值

试试这个:

bool isSearch = !String.IsNullOrEmpty(Request.QueryString["q"])
bool isSearch = !string.IsNullOrEmpty(Request.QueryString["q"]);

如何:

bool isSearch = !string.IsNullOrEmpty(Request.QueryString["q"]);