mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-21 17:28:00 +02:00
Initial checkin
This commit is contained in:
parent
c74712dad9
commit
078564ac9e
3242 changed files with 1616395 additions and 0 deletions
28
BeefLibs/corlib/src/System/StringComparison.bf
Normal file
28
BeefLibs/corlib/src/System/StringComparison.bf
Normal file
|
@ -0,0 +1,28 @@
|
|||
// ==++==
|
||||
//
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
//
|
||||
// ==--==
|
||||
/*============================================================
|
||||
**
|
||||
** Enum: StringComparison
|
||||
**
|
||||
**
|
||||
** Purpose: A mechanism to expose a simplified infrastructure for
|
||||
** Comparing strings. This enum lets you choose of the custom
|
||||
** implementations provided by the runtime for the user.
|
||||
**
|
||||
**
|
||||
===========================================================*/
|
||||
namespace System
|
||||
{
|
||||
public enum StringComparison
|
||||
{
|
||||
CurrentCulture = 0,
|
||||
CurrentCultureIgnoreCase = 1,
|
||||
InvariantCulture = 2,
|
||||
InvariantCultureIgnoreCase = 3,
|
||||
Ordinal = 4,
|
||||
OrdinalIgnoreCase = 5,
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue