mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-08-30 07:25:05 +00:00
9 lines
244 B
C#
9 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());
|
|
}
|
|
}
|