这个代码哪里出问题了,执行不了
using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
string today;//今天的午饭
string tomorrow;//明天的午饭
string temp;//声明一个空变量
today = "鱼香肉丝";
tomorrow = "小鸡炖蘑菇";
temp = today;//替换到空变量
today = tomorr;//tomorrow的值替换到today
tomorrow = temp;//完成替换
//打印
Console.WriteLine("我今天吃{0},明天吃{1}。",today,tomorrow);
}
}
}