1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-16 23:34:10 +02:00
Beef/BeefLibs/corlib/src/StringComparison.bf

28 lines
674 B
Beef

// ==++==
//
// 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,
}
}