📌  相关文章
📜  在 C# 代码示例中创建一个类

📅  最后修改于: 2022-03-11 14:49:14.090000             🧑  作者: Mango

代码示例2
//Declaring an object of type MyClass.
MyClass mc = new MyClass();

//Declaring another object of the same type, assigning it the value of the first object.
MyClass mc2 = mc;