If have an Input Xml like
<Rootnode1>
<Field1>1</Field1>
<Field2>2</Field2>
<Field3>3</Field3>
<Field4>4</Field4>
</Rootnode1>

I want to use XSL tranformatioms.
In tht Transformation I want to access each field value
C# syntx is like this
for(i=0;i<count ;i++)
{
String s1=fieldvalue;
}...