V
Vai2000
Hi All, How do you create a string array and initialize it with *
// Doesn't work
string [] arr=new string[7]{"*"}
// I guess this is correct, though I want a better/smart way
string [] arr=new string[7]{"*","*","*","*","*","*","*"}
TIA
// Doesn't work
string [] arr=new string[7]{"*"}
// I guess this is correct, though I want a better/smart way
string [] arr=new string[7]{"*","*","*","*","*","*","*"}
TIA