Introduce string

image_pdfimage_print

   

/*
C#: The Complete Reference 
by Herbert Schildt 

Publisher: Osborne/McGraw-Hill (March 8, 2002)
ISBN: 0072134852
*/
// Introduce string. 
 
using System; 
 
public class StringDemo {  
  public static void Main() {  
 
    char[] charray = {'A', ' ', 's', 't', 'r', 'i', 'n', 'g', '.' }; 
    string str1 = new string(charray); 
    string str2 = "Another string."; 
 
    Console.WriteLine(str1); 
    Console.WriteLine(str2); 
  }  
}


           
          


This entry was posted in Data Types. Bookmark the permalink.