public class OMAccount
{
[XmlElement("User")]
public string User;
[XmlElement("BizID")]
public string BizID;
[XmlElement("SecurityCID")
public string SecurityCID;
[XmlElement("ScriptName")]
public string ScriptName;
[XmlElement("ID")]
public string ID;
[XmlElement("WebServiceErr
public string WebServiceError; **************************
public Currency Currency;
**************************
public class Currency
{
private string symbol;
public string Symbol
{
get
{
return symbol;
}
set
{
symbol=value;
}
}
}
make sure to set currency = new Currency at some point ...
Main Topics
Browse All Topics





by: alain123Posted on 2004-04-16 at 13:28:35ID: 10845732
i already tried this, did not worked
] or")]
public class OMAccount
{
[XmlElement("User")]
public string User;
[XmlElement("BizID")]
public string BizID;
[XmlElement("SecurityCID")
public string SecurityCID;
[XmlElement("ScriptName")]
public string ScriptName;
[XmlElement("ID")]
public string ID;
[XmlElement("WebServiceErr
public string WebServiceError;
public class Currency
{
private string symbol;
public string Symbol
{
get
{
return symbol;
}
set
{
symbol=value;
}
}
}