OSDN Git Service

コレクション初期化子を使用する (IDE0028)
[opentween/open-tween.git] / OpenTween / ValueTuple.cs
1 // OpenTween - Client of Twitter
2 // Copyright (c) 2017 kim_upsilon (@kim_upsilon) <https://upsilo.net/~upsilon/>
3 // All rights reserved.
4 //
5 // This file is part of OpenTween.
6 //
7 // This program is free software; you can redistribute it and/or modify it
8 // under the terms of the GNU General Public License as published by the Free
9 // Software Foundation; either version 3 of the License, or (at your option)
10 // any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 // or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 // for more details.
16 //
17 // You should have received a copy of the GNU General Public License along
18 // with this program. If not, see <http://www.gnu.org/licenses/>, or write to
19 // the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
20 // Boston, MA 02110-1301, USA.
21
22 using System;
23 using System.Collections;
24 using System.Collections.Generic;
25 using System.Linq;
26 using System.Text;
27 using System.Threading.Tasks;
28
29 // ValueTuple が .NET Framework に追加されるまでの繋ぎのための定義
30
31 namespace System
32 {
33     internal struct ValueTuple<T1, T2> : IStructuralEquatable
34     {
35         public T1 Item1;
36         public T2 Item2;
37
38         public ValueTuple(T1 item1, T2 item2)
39         {
40             this.Item1 = item1;
41             this.Item2 = item2;
42         }
43
44         bool IStructuralEquatable.Equals(object other, IEqualityComparer comparer)
45         {
46             if (other is ValueTuple<T1, T2> otherTuple)
47             {
48                 return comparer.Equals(this.Item1, otherTuple.Item1)
49                     && comparer.Equals(this.Item2, otherTuple.Item2);
50             }
51
52             return false;
53         }
54
55         int IStructuralEquatable.GetHashCode(IEqualityComparer comparer)
56             => comparer.GetHashCode(this.Item1) ^ comparer.GetHashCode(this.Item2);
57     }
58 }
59
60 namespace System.Runtime.CompilerServices
61 {
62     [AttributeUsage(AttributeTargets.Field | AttributeTargets.Parameter | AttributeTargets.Property | AttributeTargets.ReturnValue | AttributeTargets.Class | AttributeTargets.Struct)]
63     internal class TupleElementNamesAttribute : Attribute
64     {
65         public IList<string> TransformNames { get; }
66
67         public TupleElementNamesAttribute(string[] names)
68             => this.TransformNames = names;
69     }
70 }