Question:
In terms of runtime performance, which is the fastest method in powershell to write a large body of text into a file?
Answer:
1 2 3 4 |
$sw = new-object system.IO.StreamWriter( $sw.write( $sw.close() |
In terms of runtime performance, which is the fastest method in powershell to write a large body of text into a file?
1 2 3 4 |
$sw = new-object system.IO.StreamWriter( $sw.write( $sw.close() |