This is a new feature is called Digit Grouping Symbol. Step1- Open Region and Language in control panel Step2- click on addtional setting step3- on Numbers tab step4- set Digit Grouping Symbol as custom setting. change comma replace with(any charater as A to Z or {/,}). Digit Grouping Symbol=e; Example
Steps: string checkFormate="123e123"; decimal outPut=0.0M; decimal.TryParse(checkFormate, out outPut); Ans
- Open Region and Language in control panel
- Click on Additional setting
- On Numbers tab
- Set Digit Grouping Symbol as custom setting. Change comma; replace with (any character as A to Z or {/,}). Digit Grouping Symbol=e;
Example:outPut=123123;
string checkFormate = "123e123";
decimal outPut = 0.0M;
decimal.TryParse(checkFormate, out outPut);
Ans: outPut=123123;