in C# how do i transform an xml document with an xsl document when my xml
document is a string and my xsl document is a string? the msdn examples only
show how to do it with steams and files. in my case i have everything in
string
Pascal Schmitt - 31 Aug 2005 01:45 GMT
> in C# how do i transform an xml document with an xsl document when my xml
> document is a string and my xsl document is a string? the msdn examples only
> show how to do it with steams and files. in my case i have everything in
> string
Use a StringReader - if you want to output it to a string, use StringWriter.