StreamWriter and IFormatProvider
Asked Answered
S

2

22

How do I pass an IFormatProvider to a StreamWriter?

Specifically I want to create a
new StreamWriter("myfile.txt", CultureInfo.InvariantCulture);

TextWriter and StringWriter have a parameter for that in the constructor, but StreamWriter does not.
The Property stringWriter.FormatProvider is readonly.

I could think of three workarounds that seem like bad solutions:

  • Changing Thread.CurrentCulture: This is going to be in a library, so I'd rather not change any global settings, even temporarily.
  • sw.WriteLine(InvariantCulture, , ): There are a lot of sw.WriteLine() over several functions. I'd really like to avoid messing with all of them.
  • using a StringWriter first and then writing the string to a file: since the stream can get very big, this will incur a huge overhead.

Is there any way to specify a FormatProvider for StreamWriter? Based on Inheritance from TextWriter, the StreamWriter must have the means to handle this, if I could just set the property.

Stilly answered 17/8, 2012 at 19:9 Comment(0)
B
26

Since the FormatProvider property is virtual you can create your own subclass which takes an IFormatProvider:

public class FormattingStreamWriter : StreamWriter
{
    private readonly IFormatProvider formatProvider;

    public FormattingStreamWriter(string path, IFormatProvider formatProvider)
        : base(path)
    {
        this.formatProvider = formatProvider;
    }

    public override IFormatProvider FormatProvider
    {
        get
        {
            return this.formatProvider;
        }
    }
}
Billetdoux answered 17/8, 2012 at 19:16 Comment(0)
E
2

You could create a new class inheriting from StreamWriter and override the virtual FormatProvider property.

Equitable answered 17/8, 2012 at 19:16 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.