// string is an alias in C# for System.String. So there is no difference.
using System;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
string s1 = "c#", s2 = "java";
string s = string.Format("{0} {1}", s1, s2);
Console.WriteLine(s);
}
}
}
/*
run:
c# java
*/