save string stream into file

  • Thread starter Thread starter Grey
  • Start date Start date
G

Grey

Please help me to the following questions:

1) Is it possible to save the XSLT result into stream?? I have one xml and xslt file and i need to use the xslt to translate the xml into another format which it would save as stream and what type of stream should be used??

2) how to combine two streams into one and then convert to a file??

Million Thanks...
 
Hi,

You could possibly use MemoryStreams to accumulate the results in memory and
then write the content of each stream to a disk file by using the streams'
GetBuffer methods.

--
Dmitriy Lapshin [C# / .NET MVP]
X-Unity Test Studio
http://www.x-unity.net/teststudio.aspx
Bring the power of unit testing to VS .NET IDE

Please help me to the following questions:

1) Is it possible to save the XSLT result into stream?? I have one xml and
xslt file and i need to use the xslt to translate the xml into another
format which it would save as stream and what type of stream should be
used??

2) how to combine two streams into one and then convert to a file??

Million Thanks...
 
Back
Top