在C#中,有多种变量初始化方式。以下是一些常见的初始化方法:
int a = 10;
string b = "Hello, World!";
bool c = true;
class MyClass
{
public int A { get; set; }
public string B { get; set; }
public bool C { get; set; }
public MyClass(int a, string b, bool c)
{
A = a;
B = b;
C = c;
}
}
MyClass obj = new MyClass(10, "Hello, World!", true);
int a = 10;
string b = "Hello, World!";
bool c = true;
MyClass obj = new MyClass
{
A = a,
B = b,
C = c
};
void MyMethod(int a, string b, bool c)
{
// ...
}
MyMethod(10, "Hello, World!", true);
class MyClass
{
public int A { get; set; }
public string B { get; set; }
public bool C { get; set; }
}
MyClass obj = new MyClass
{
A = 10,
B = "Hello, World!",
C = true
};
obj.A = 20;
obj.B = "New String";
obj.C = false;
var obj = new
{
A = 10,
B = "Hello, World!",
C = true
};
var obj = new[]
{
new { A = 10, B = "Hello, World!", C = true },
new { A = 20, B = "New String", C = false }
}[0];
这些只是C#中变量初始化的一些方法。您可以根据需要选择最适合您的方法。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。