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

Pair.cs « Xsl « Xml « System « System.Data.SqlXml « referencesource « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 46a8ad5e5aadfbb15d6c43254eeef59a00b62bef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
//------------------------------------------------------------------------------
// <copyright file="Pair.cs" company="Microsoft">
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>
// <owner current="true" primary="true">Microsoft</owner>
//------------------------------------------------------------------------------
using System;
using System.Diagnostics;

namespace System.Xml.Xsl {
    internal struct Int32Pair {
        private int left;
        private int right;

        public Int32Pair(int left, int right) {
            this.left = left;
            this.right = right;
        }

        public int Left  { get { return this.left ; } }
        public int Right { get { return this.right; } }

        public override bool Equals(object other) {
            if (other is Int32Pair) {
                Int32Pair o = (Int32Pair) other;
                return this.left == o.left && this.right == o.right;
            }

            return false;
        }

        public override int GetHashCode() {
            return this.left.GetHashCode() ^ this.right.GetHashCode();
        }
    }

    internal struct StringPair {
        private string left;
        private string right;

        public StringPair(string left, string right) {
            this.left = left;
            this.right = right;
        }

        public string Left  { get { return this.left ; } }
        public string Right { get { return this.right; } }
    }
}