DRAG DROP
Data contract Exhibit:
<DataContract>
Public Class Employee
<DataMember>
Public Name As String
<DataMember>
Public City As String
<DataMember>
Public Wage As Integer
<DataMember>
Public EMPLOYEEID As Integer
End Class
XML exhibit:
<Employee>
<Name xsi:nil”true”/>
<City xsi:nil “true”/>
< EMPLOYEEID >123456789 </ EMPLOYEEID >
</Employee>
There is WCF (Windows Communication Foundation) application PassGuideApp.
PassGuideApp uses the data contract being displayed data contract exhibit.
The XML code in the XML exhibit must be produces with the data contract is serialized.
How can this be achieved?

Explanation: