What is the C# equivalent of NaN or IsNumeric?

后端 未结 15 999
心在旅途
心在旅途 2020-11-27 14:06

What is the most efficient way of testing an input string whether it contains a numeric value (or conversely Not A Number)? I guess I can use Double.Parse or a

15条回答
  •  情深已故
    2020-11-27 14:22

    VB has the IsNumeric function. You could reference Microsoft.VisualBasic.dll and use it.

提交回复
热议问题