Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

c# convert bool to string

using System;
public class myExample {
   public static void Main(){
      bool boolVal = true;
      string strBool = boolVal.ToString();
      Console.WriteLine(strBool);
   }
}
 
PREVIOUS NEXT
Tagged: #convert #bool #string
ADD COMMENT
Topic
Name
5+3 =