I'm having WF application and trying to serialize/deserialize its data based on different cases (like in CurrentCulture and InvariantCulture).
I'm facing problem when change the CurrentCulture.TextInfo.ListSeparator before serialization / deserialization.
Thread.CurrentThread.CurrentUICulture = new CultureInfo("en-US", false);
Thread.CurrentThread.CurrentUICulture.TextInfo.ListSeparator = ";";
To resolve the problems, i need to find whether ListSeparator has modified or not. I could not find any method for this.
Please suggest me your ideas.
Thanks.