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

TypeComparisonMode.cs « Mono.Cecil - github.com/mono/cecil.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f69d98a99d5b500ebd936d1cbb2832c30254ce6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace Mono.Cecil
{
    internal enum TypeComparisonMode {
        Exact,
        SignatureOnly,

        /// <summary>
        /// Types can be in different assemblies, as long as the module, assembly, and type names match they will be considered equal
        /// </summary>
        SignatureOnlyLoose
    }
}