当前位置: 首页>>代码示例>>C#>>正文


C# String.IsNullOrEmpty方法代码示例

本文整理汇总了C#中System.String.IsNullOrEmpty方法的典型用法代码示例。如果您正苦于以下问题:C# String.IsNullOrEmpty方法的具体用法?C# String.IsNullOrEmpty怎么用?C# String.IsNullOrEmpty使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.String的用法示例。


在下文中一共展示了String.IsNullOrEmpty方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: Test

string s1 = "abcd";
string s2 = "";
string s3 = null;

Console.WriteLine("String s1 {0}.", Test(s1));
Console.WriteLine("String s2 {0}.", Test(s2));
Console.WriteLine("String s3 {0}.", Test(s3));

String Test(string s)
{
if (String.IsNullOrEmpty(s)) 
    return "is null or empty";
else
    return String.Format("(\"{0}\") is neither null nor empty", s);
}
开发者ID:.NET开发者,项目名称:System,代码行数:15,代码来源:String.IsNullOrEmpty

输出:

String s1 ("abcd") is neither null nor empty.
String s2 is null or empty.
String s3 is null or empty.

示例2: TestForNullOrEmpty

bool TestForNullOrEmpty(string s)
{
    bool result;
    result = s == null || s == string.Empty;
    return result;
}

string s1 = null;
string s2 = "";
Console.WriteLine(TestForNullOrEmpty(s1));
Console.WriteLine(TestForNullOrEmpty(s2));
开发者ID:.NET开发者,项目名称:System,代码行数:11,代码来源:String.IsNullOrEmpty

输出:

True
True

示例3: catch

String s = null;

  Console.WriteLine("The value of the string is '{0}'", s);

  try 
  {
      Console.WriteLine("String length is {0}", s.Length);
  }
  catch (NullReferenceException e) 
  {
      Console.WriteLine(e.Message);
  }

  // The example displays the following output:
  //     The value of the string is ''
  //     Object reference not set to an instance of an object.
开发者ID:.NET开发者,项目名称:System,代码行数:16,代码来源:String.IsNullOrEmpty


注:本文中的System.String.IsNullOrEmpty方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。