I think the closest you'll get is an indexed format:

    String.Format("{0} has {1} quote types.", "C#", "1");

There's also String.Replace(), if you're willing to do it in multiple steps and take it on faith that you won't find your 'variables' anywhere else in the string:

    string MyString = "{language} has {n} quote types.";
    MyString = MyString.Replace("{language}", "C#").Replace("{n}", "1");

Expanding this to use a List:

    List<KeyValuePair<string, string>> replacements = GetFormatDictionary();  // left initialization up to you
    foreach (KeyValuePair<string, string> item in replacements)
    {
        MyString = MyString.Replace(item.Key, item.Value);
    }

Now using the List's .ForEach() method we can condense this even further:

    replacements.ForEach(delegate(KeyValuePair<string,string>) item) { MyString = MyString.Replace(item.Key, item.Value);});

A lambda would be even simpler, but I'm still on .Net 2.0.