C# Boolean FalseString
Description
Boolean FalseString
represents the Boolean value false
as a string. This field is read-only.
Syntax
Boolean.FalseString
has the following syntax.
public static readonly string FalseString
Example
This field is equal to the string "False".
using System;//from w ww .j a va 2 s. c o m
public class MainClass{
public static void Main(String[] argv){
System.Console.WriteLine(Boolean.FalseString);
}
}
The code above generates the following result.