using System;
using System.Collections.Generic;
namespace ConsoleApplication_C_Sharp
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine(GetStrings());
}
static KeyValuePair<string, string> GetStrings()
{
string s1 = "Star Wars";
string s2 = "Avatar";
return new KeyValuePair<string, string>(s1, s2);
}
}
}
/*
run:
[Star Wars, Avatar]
*/