Convert.ToString Method in C#



Convert the specified value to its equivalent string using the ToString() method.

Initialize a bool value.

bool boolVal = false;

Now, to convert it to a string, use the ToString() method.

Convert.ToString(boolVal)

The following is the complete example.

Example

 Live Demo

using System;
public class Demo {
   public static void Main() {
      bool boolVal = false;
      Console.WriteLine(Convert.ToString(boolVal));
   }
}

Output

False

Advertisements