Tuple.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 / Orcas / SP / ndp / fx / src / xsp / System / Web / Extensions / Util / Tuple.cs / 2 / Tuple.cs

                            //------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------------------- 

namespace System.Web.Util { 
    using System; 

    internal sealed class Tuple { 
        private object[] _items;

        public Tuple(params object[] items) {
            _items = items; 
        }
 
        public object this[int index] { 
            get {
                return _items[index]; 
            }
        }

        public override int GetHashCode() { 
            if (_items.Length == 0) return 0;
            HashCodeCombiner combiner = new HashCodeCombiner(); 
            for (int i = 0; i < _items.Length; i++) { 
                combiner.AddObject(_items[i]);
            } 
            return combiner.CombinedHash32;
        }

        public override bool Equals(object obj) { 
            if (obj == null) return false;
            Tuple other = (Tuple)obj; 
            if (other == this) return true; 
            if ((other._items.Length != _items.Length)) return false;
            for (int i = 0; i < _items.Length; i++) { 
                if (!other[i].Equals(this[i])) return false;
            }
            return true;
        } 
    }
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------------------- 

namespace System.Web.Util { 
    using System; 

    internal sealed class Tuple { 
        private object[] _items;

        public Tuple(params object[] items) {
            _items = items; 
        }
 
        public object this[int index] { 
            get {
                return _items[index]; 
            }
        }

        public override int GetHashCode() { 
            if (_items.Length == 0) return 0;
            HashCodeCombiner combiner = new HashCodeCombiner(); 
            for (int i = 0; i < _items.Length; i++) { 
                combiner.AddObject(_items[i]);
            } 
            return combiner.CombinedHash32;
        }

        public override bool Equals(object obj) { 
            if (obj == null) return false;
            Tuple other = (Tuple)obj; 
            if (other == this) return true; 
            if ((other._items.Length != _items.Length)) return false;
            for (int i = 0; i < _items.Length; i++) { 
                if (!other[i].Equals(this[i])) return false;
            }
            return true;
        } 
    }
} 

// 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