Can I change the value of Environment.NewLine? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T01:15:31Z http://stackoverflow.com/feeds/question/569975 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/569975/can-i-change-the-value-of-environment-newline 3 Can I change the value of Environment.NewLine? TheSoftwareJedi 2009-02-20T15:27:52Z 2009-11-30T18:17:47Z <p>I'm working with a library that uses Environment.NewLine as it's newline char when writing a file. I need it to write Unix formatted files, and as such would like to change the newline char.</p> <p>Can I change the value of Environment.NewLine?</p> <p>Any other ideas (aside from converting the file post creation)?</p> http://stackoverflow.com/questions/569975/can-i-change-the-value-of-environment-newline/569994#569994 8 Answer by Konrad Rudolph for Can I change the value of Environment.NewLine? Konrad Rudolph 2009-02-20T15:31:35Z 2009-02-20T15:31:35Z <blockquote> <p>Can I change the value of Environment.NewLine?</p> </blockquote> <p>No. If you know which platform to write for, create classes for each of these platforms and let them have their own implementation. In the simplest case, this would look as follows:</p> <pre><code>public abstract class Platform { public abstract string Newline { get; } } public sealed class Unix : Platform { public override string Newline { get { return "\n"; } } } </code></pre> <p>etc., and then just use an instance of the appropriate class.</p> http://stackoverflow.com/questions/569975/can-i-change-the-value-of-environment-newline/569999#569999 2 Answer by Diago for Can I change the value of Environment.NewLine? Diago 2009-02-20T15:32:21Z 2009-02-20T15:32:21Z <p>According to MSDN the Environment class is sealed so therefore you wouldn't be able to inherit from it to change the value. To my knowledge that is the only way you would have been able to. Alternatively you could try and create a partial class extending the Environment class. I've never tried the latter so not sure if it will work.</p> http://stackoverflow.com/questions/569975/can-i-change-the-value-of-environment-newline/570000#570000 0 Answer by Mike_G for Can I change the value of Environment.NewLine? Mike_G 2009-02-20T15:32:34Z 2009-02-20T15:32:34Z <p>The Environment.NewLine property constant, so there is no changing it. The best thing I could recommend is to change everywhere where this is used, to your own constant.</p> http://stackoverflow.com/questions/569975/can-i-change-the-value-of-environment-newline/570033#570033 0 Answer by Richard for Can I change the value of Environment.NewLine? Richard 2009-02-20T15:38:57Z 2009-02-20T15:38:57Z <p>Does the 3rd party library write to a Stream or do you pass it the filename?</p> <p>In the former case you could pass a MemoryStream and then do a replace on the newlines to get the ones you want. In the latter get it to write to a temporary file, then stream to the real file (while replacing line endings).</p> http://stackoverflow.com/questions/569975/can-i-change-the-value-of-environment-newline/570047#570047 1 Answer by Kb for Can I change the value of Environment.NewLine? Kb 2009-02-20T15:41:11Z 2009-02-20T15:41:11Z <p>Environment.Newline is returning the newline character of the runtime environment hosting the .Net runtime. You should not use this for conversion of newline to another platform's newline character. </p> <p>I would recommend to implement your own class for conversions.</p> http://stackoverflow.com/questions/569975/can-i-change-the-value-of-environment-newline/570114#570114 0 Answer by Jcl for Can I change the value of Environment.NewLine? Jcl 2009-02-20T15:57:50Z 2009-02-20T15:57:50Z <p>God bless you can't... you'd completely change the whole meaning of the System.Environment namespace.</p> <p>What you want to do is writing something for a specific OS (no matter which environment you are running the application on), so Environment. is not what you should be using for a start.</p> http://stackoverflow.com/questions/569975/can-i-change-the-value-of-environment-newline/1821456#1821456 0 Answer by Broam for Can I change the value of Environment.NewLine? Broam 2009-11-30T18:17:47Z 2009-11-30T18:17:47Z <p>We had this problem where we had to change the value of NewLine to <code>&lt;br /&gt;</code> for web output.</p> <p>It necessitated making another property for use in our class. There's really no way around it.</p>