Oversættelse af asp script til c#
Sidder med et script i asp jeg prøver at oversætte, men kan ikke rigtig finde ud af det, så håber en af jer vil tage et lille kig på koden :)function levelcheck( sXML )
// Setting constants
Set objXML = Server.CreateObject("Microsoft.XMLDOM")
objXML.async = False
// Loading XML file
objXML.loadXML( sXML )
for each xRoot in objXML.documentElement.childNodes
if xRoot.NodeName = "level" then
IsolatePaymentFees = Array( xRoot.ChildNodes(0).text * 10.25 , _
xRoot.ChildNodes(1).text * 1.25 , _
xRoot.ChildNodes(2).text , _
xRoot.ChildNodes(3).text , _
xRoot.ChildNodes(4).text , _
xRoot.ChildNodes(5).text , _
xRoot.ChildNodes(6).text * 1.25 )
exit function
end if
next
end function
På forhånd tak.