C#
 Computer >> コンピューター >  >> プログラミング >> C#

C#のIsNullOrEmpty()メソッド


C#のIsNullOrEmpty()メソッドは、指定された文字列がnullであるか、空の文字列( "")であるかを示すために使用されます。

構文

構文は次のとおりです-

public static bool IsNullOrEmpty (string val);

上記の値valは、テストする文字列です。

例を見てみましょう-

using System;
public class Demo {
   public static void Main(){
      string str1 = "Amit";
      string str2 = " ";
      Console.WriteLine("Is string1 null or empty? = "+string.IsNullOrEmpty(str1));
      Console.WriteLine("Is string2 null or empty? = "+string.IsNullOrEmpty(str2));
   }
}

出力

これにより、次の出力が生成されます-

Is string1 null or empty? = False
Is string2 null or empty? = False

別の例を見てみましょう-

using System;
public class Demo {
   public static void Main(){
      string str1 = null;
      string str2 = String.Empty;
      Console.WriteLine("Is string1 null or empty? = "+string.IsNullOrEmpty(str1));
      Console.WriteLine("Is string2 null or empty? = "+string.IsNullOrEmpty(str2));
   }
}

出力

これにより、次の出力が生成されます-

Is string1 null or empty? = True
Is string2 null or empty? = True

  1. C++でNULLクラスポインタを介してクラスメソッドを呼び出す

    クラスメソッドはNULLクラスポインタを使用して呼び出すことができます。 注 −これは未定義の動作であり、プログラムの実行についての保証はありません。実際の結果は、使用するコンパイラによって異なります。 これを実証するプログラムは次のとおりです。 例 #include <iostream> using namespace std; class Example {    public :    void func() {       cout << "The function is cal

  2. C#のジェネリックメソッドからnullを返すにはどうすればよいですか?

    Genericsを使用すると、フィールド、メソッド、パラメーターなどのタイプのプレースホルダーを使用してクラスを定義できます。Genericsを使用すると、コンパイル時にこれらのプレースホルダーを特定のタイプに置き換えます。ジェネリックは、山括弧<>を使用して定義できます。コレクションの主な制限は、効果的な型チェックがないことです。これは、C#プログラミング言語のすべてのクラスがオブジェクト基本クラスから拡張されているため、任意のオブジェクトをコレクションに含めることができることを意味します。 また、通常のメソッドのように、ジェネリックメソッドから単純にnullを返すことはできません。以下は