我有 2 节课:
public class testClass1
{
public string Name { get; set; }
public testClass2 testClass2Object { get; set; }
}
public class testClass2
{
public testClass2() { }
public testClass2(int i) { TestProperty = i; }
public int TestProperty { get; set; }
}
我想返回头等舱的对象webMethod
:
[WebMethod]
public testClass1 testMethod()
{
testClass1 test = new testClass1();
test.Name = "stackoverflow";
test.testClass2Object = new testClass2(2);
return test;
}
但我没有testClass2
从testClass1
对象中获取属性值。
我尝试[Serializable]
[XmlInclude(typeof(testClass2))]
了注释,但没有任何改变。有什么建议么?