mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-18 07:00:53 -05:00
10 lines
244 B
C#
10 lines
244 B
C#
using Ryujinx.Common.Helper;
|
|
|
|
namespace Ryujinx.HLE.HOS.Applets.SoftwareKeyboard
|
|
{
|
|
public static class NumericCharacterValidation
|
|
{
|
|
public static bool IsNumeric(char value) => Patterns.Numeric.IsMatch(value.ToString());
|
|
}
|
|
}
|