C# Extension Method for String Data Type

后端 未结 7 1864
清酒与你
清酒与你 2020-12-11 10:58

My web application deals with strings that need to be converted to numbers a lot - users often put commas, units (like cm, m, g, kg) and currency symbols in these fields so

7条回答
  •  南方客
    南方客 (楼主)
    2020-12-11 11:39

      public static double ToDecimal(this string value)
            {
                ... your parsing magic
            }
    

提交回复
热议问题