Possible Duplicate:
C#: Assign same value to multiple variables in single statement
If I have a string declared as,
string a,b,c,d......,z;
and I want to assign all of them value "69" then what would be the best approach.
e.g.
a = b = .... = y = z = "69";
I dont want to use any array or List.
Edit
Would like to know the best approach :)