In
Is there a way that "%20s could be a dynamic text ?Code:string y= "CodeGuru site" string result = string.Format("%8s",y);
to format the string outside the scope of development?Code:string format = "site is %8s"; string result = string.Format(format,y);
Cheers




Reply With Quote