I have a situation where I would have to do the following -
String.Format("{0}",{1},"Hi!")
(This is just a very simple version of what i am trying to achieve)
And the output I want is -
Hi!
The output I am getting is -
{1}
String.Format("{0}","{1} Atul {2}","Hi!", "Kumar") I want the output to be - Hi Atul Kumar