In
Code:
string y= "CodeGuru site"
 string result = string.Format("%8s",y);
Is there a way that "%20s could be a dynamic text ?

Code:
string format = "site is %8s";
 string result = string.Format(format,y);
to format the string outside the scope of development?

Cheers