■ Information 클래스의 IsNumeric 정적 메소드를 사용해 숫자 문자열 여부를 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 |
using Microsoft.VisualBasic; Console.WriteLine(Information.IsNumeric("1" )); Console.WriteLine(Information.IsNumeric("1aa")); |
■ Information 클래스의 IsNumeric 정적 메소드를 사용해 숫자 문자열 여부를 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 |
using Microsoft.VisualBasic; Console.WriteLine(Information.IsNumeric("1" )); Console.WriteLine(Information.IsNumeric("1aa")); |