C#宣告一个变量
2021-04-22 20:28
标签:close 运行 com 分享 one double target lan bsp 在C#程序里,宣告一个变量,是件很容易的事情。 在控制台运行并输出结果: 在较高一些版本的C#,还可以使用dynamic关键词,把变量宣告为动态变量: C#宣告一个变量 标签:close 运行 com 分享 one double target lan bsp 原文地址:http://www.cnblogs.com/insus/p/8011382.html
如下面,宣告一个变量,并赋值: int type = 22;
Console.WriteLine(type);
bool type1 = false;
Console.WriteLine(type1);
string type2 = "Insus.NET";
Console.WriteLine(type2);
double type3 = 4.8;
Console.WriteLine(type3);
在宣告变量,我们可以使用var关键词:var type = 22;
Console.WriteLine(type);
var type1 = false;
Console.WriteLine(type1);
var type2 = "Insus.NET";
Console.WriteLine(type2);
var type3 = 4.8;
Console.WriteLine(type3);
dynamic type;
type = 22;
Console.WriteLine(type);
type = false;
Console.WriteLine(type);
type = "Insus.NET";
Console.WriteLine(type);
type = 4.8;
Console.WriteLine(type);
下一篇:C# - 命名规范