if i have these two data contracts (one extend the other)
[DataContractAttribute]
class ResponseContractOne
{
DataAreaId dataAreaId;
str field1;
str field2;
}
[DataContractAttribute]
class ResponseContractTwo extends ResponseContractOne
{
str field3;
str field4;
}
Field3 and Field4 appear first then (dataAreaId, Field1, Field2)
can i change the order how they appear? i would like the fields in ResponseContractOne to appear first in the response


Report
All responses (
Answers (