-
Notifications
You must be signed in to change notification settings - Fork 5.4k
API Proposal: Make char.IsAscii public #40936
Copy link
Copy link
Closed
Labels
api-approvedAPI was approved in API review, it can be implementedAPI was approved in API review, it can be implementedarea-System.Runtimegood first issueIssue should be easy to implement, good for first-time contributorsIssue should be easy to implement, good for first-time contributors
Milestone
Metadata
Metadata
Assignees
Labels
api-approvedAPI was approved in API review, it can be implementedAPI was approved in API review, it can be implementedarea-System.Runtimegood first issueIssue should be easy to implement, good for first-time contributorsIssue should be easy to implement, good for first-time contributors
Type
Fields
Give feedbackNo fields configured for issues without a type.
System.Char currently defines a private
IsAsciimethod. It think it might make sense to make this public?public readonly struct Char { + public static bool IsAscii(char ch); }