Welcome to mirror list, hosted at ThFree Co, Russian Federation.

EnumerableCardinality.cs « Collections « Internal « Microsoft « ComponentModel « src « System.ComponentModel.Composition « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 45fc7de01cfd4eab21cd91e1a51cbf56bd46b363 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// -----------------------------------------------------------------------
// Copyright (c) Microsoft Corporation.  All rights reserved.
// -----------------------------------------------------------------------
using System;

namespace Microsoft.Internal.Collections
{
    internal enum EnumerableCardinality : int
    {
        Zero = 0,
        One = 1,
        TwoOrMore = 2,
    }
}