aparna_18 0 Newbie Poster

Hi,
I want to replace the C# code into XSLT.In that list object is there,how can I create it into XSLT.
C# code:

public void listAdd(string param0, string param1)
{
    System.Collections.ArrayList listValues = new System.Collections.ArrayList();
    listValues.Add(param0);
    listValues.Add(param1);
}

The above code should be replaced in XSLT using XPath functions.Please help me on this.