C#声明变量

声明变量的C#语法是制定类型和变量名

<type><name>

 

下面的示例使用简单代码声明两个变量并赋值,再输出他们

 

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            int my_int = 123;
            string my_str = "abc";

            Console.WriteLine("{0} -- {1}", my_int, my_str);


        }
    }
}