Home
Manage Your Code
Snippet: How to create String Array (C#)
Title: How to create String Array Language: C#
Description: How to create String Array Views: 217
Author: Leeway Hertz Date Added: 12/29/2007
Copy Code  
1
2        string[] str = new string[3];
3
4        str[0] = "Aka,sh";
5        str[1] = "Raje,e";
6