我确定我在这里遗漏了一些东西.对于某个项目,我需要检查字符串是否为空或 null.
I'm sure I've missed something here. With a certain project I need to check if a string is empty or null.
有没有更简单的写法?
if(myString == "" || myString == null)
{
...
是的,有 String.IsNullOrEmpty
辅助方法已经用于:
Yes, there's the String.IsNullOrEmpty
helper method for exactly this already:
if (String.IsNullOrEmpty(myString)) {
...
}
这篇关于更简单的写空或空的方法?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!