■ StringExtensions 클래스의 IsEmail/IsDecimal 확장 메소드를 사용하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 |
using CommunityToolkit.Common; string text1 = "test@test.com"; bool result1 = text1.IsEmail(); // true string text2 = "123+888"; bool result2 = text2.IsDecimal(); // false |
※ CommunityToolkit.WinUI.Extensions 누겟을 참조했다.