Why does Linked List Node show the data in the Node as @data instead of data (in Locals window) - C#

后端 未结 0 372
醉酒成梦
醉酒成梦 2021-02-08 09:22

I have the following code:

using System;

namespace DataStructures
{
    public class Node
    {
        public Node next;
        public string data;
    }

             


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题