Pair.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / XmlUtils / System / Xml / Xsl / Pair.cs / 1 / Pair.cs

                            //------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
// [....] 
//-----------------------------------------------------------------------------
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; } }
    }
}
 


// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
// [....] 
//-----------------------------------------------------------------------------
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; } }
    }
}
 


// File provided for Reference Use Only by Microsoft Corporation (c) 2007.

                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK