It gives me a result, where it suddenly uses “.” instead of “,” as comma delimiter What is wrong? This is only the case on this machine. On my 2 other machine it doesn’t change it.
Sure, but then it’s another workaround. I want to understand, why it doesn’t work on one machine, while the two others works perfectly. All same settings (or at least I think).
@LauraMM
technically, internaly a double has defined the decimal seperator as “.” and thats all
the locale representation (e.g. yours) is defining the group seperator with “.” and a decimal seperator with “,” when the double is to be represented as a string.
Regardless on how we want to represent the double as string, internally it rest as it is implemented, is fixed and we do not change.
So, if the locale / different representation of the double is not specified (e.g. via CultureInfo…) then the internal representation will be used. And this is the correct behaviour.
Same we do have with dateTime (internally in the format of MM/dd/yyyy HH:mm:ss and we do not touch the internal structure)
If we can change its behavior by some settings except project / workflow, interoperability of project/workflow among PC might be lower. Unfortunately, for now there is no culture settings in project settings etc. it’s not recommended to change it even if we can change it by any other ways except workflow, I think.
Yeah, is here any particular paragraph, you think will solve my question? I can’t really find it.
My problem: I have the same settings on 3 computers and yet 1 of them behaves in a different manor. I’m not interested in workarounds or pseudo-solutions.
I have the almost the same issue but the difference is that my system format is as following :
Decimal separator : .
Thousand separator ,
I put the assign activity at the beginning of my workflow but still not working, i suppose that i should use i culture Info from another region.
Can you please help me to solve it?