IsCharAlphaNumeric

[DllImport("user32.dll", SetLastError = true)]
public static extern bool IsCharAlphaNumeric(
   char ch
);

Microsoft documentation: Link

Last updated