Here is code
public partial class Property
{
private string keyField;
private object valueField;
///
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=0)]
public string key
{
get
{
return this.keyField;
}
set
{
this.keyField = value;
}
}
///
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, Order=1)]
public object value
{
get
{
return this.valueField;
}
set
{
this.valueField = value;
}
}
}
and a function is declared like this
public VerifyRetailO VerifyRetail(ref Property[] Properties, VerifyRetailI VerifyRetailRq)
but i dont know how to pass the first parameter
please help
Tapan PatelPosted Aug 9, 2016, 8:55 AM
Bikesh SrivastavaPosted Aug 9, 2016, 9:16 AM
rahul shekarPosted Aug 9, 2016, 8:18 AM
Vinay SinghPosted Aug 9, 2016, 7:59 AM
rahul shekarPosted Aug 9, 2016, 7:56 AM
Vinay SinghPosted Aug 9, 2016, 7:41 AM