C
c
I have an XMLElement that looks like this:
<IRS E="-17"/>
I need the value of E in an int and thought I could do this:
int interror = thexmlElement.getIntAttribute("IRS");
but that doesn't seem to do the trick.
What am I missing here?
thanks.
c
<IRS E="-17"/>
I need the value of E in an int and thought I could do this:
int interror = thexmlElement.getIntAttribute("IRS");
but that doesn't seem to do the trick.
What am I missing here?
thanks.
c