我有一个名为Person的课程
class Person
{
public string name;
public int age;
public Person(string name, int age)
{
this.name = name;
this.age = age;
}
}
我创建了一个对象。
Person person = new Person("Sam", 20);
现在我想在人物参考中打印地址。
现在,如果有人在想我想对地址做什么,我只想了解参考的概念。
参考概念我的意思是
答案 0 :(得分:-2)
我认为这就是你所需要的:
&person -> gives you the pointer to the person variable
请仔细阅读并查看是否有帮助:https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/unsafe-code-pointers/