我有一个像下面这样的课程。我想Messageformat
为一个 web 服务发送一个这样的,所以我需要将值添加到Attributecollection
and Input
。
public class Messageformat
{
public class Attributecollection
{
public string name { get; set; }
public int id { get; set; }
}
public class Input
{
public string soid { get; set; }
public string itemname { get; set; }
public int qty { get; set; }
}
public class output
{
public string soid { get; set; }
}
}
我想为这个类添加值。我一次只能调用一个类并向该类添加值。有什么方法可以调用类Messageformat
并通过该对象向子类添加值。我知道它是一个嵌套的类结构。我不擅长 oop 所以任何人都可以分享一些关于这个的想法吗?