-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathGenericsSample.cs
234 lines (200 loc) · 7.97 KB
/
GenericsSample.cs
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
using System;
using System.Collections.ObjectModel;
/// <summary>
/// https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/generics/constraints-on-type-parameters
/// </summary>
namespace CodeSamples.Classes
{
#region Support stuff for Snippets
internal enum EnumType
{
No,
Yes
}
internal struct StructType
{
public string Something;
public int SomethingElse;
}
internal class ClassWithParameterlessConstructor
{
public ClassWithParameterlessConstructor()
{
Console.WriteLine($"Hello! I am {this.GetType().Name}.");
}
}
internal class ClassWithParameterConstructor
{
public ClassWithParameterConstructor(int count)
{
Console.WriteLine($"Hello! I am {this.GetType().Name}.");
}
}
internal interface ISomeInterface
{
void Go();
}
internal class ClassFromSomeInterface : ISomeInterface
{
public void Go()
{
Console.WriteLine($"Hello! I am {this.GetType().Name}.");
}
}
internal abstract class SomeBaseClass
{
public abstract void Go();
}
internal class SomeClassFromBaseClass : SomeBaseClass
{
public override void Go()
{
Console.WriteLine($"Hello! I am {this.GetType().Name}.");
}
}
#endregion
internal class GenericClass<T>
{
public void Go()
{
Console.WriteLine($"Hello! I am {this.GetType().Name} and my main element is of type {typeof(T)}.");
}
}
/// <summary>
/// The type argument must be a non-nullable value type. For information about
/// nullable value types, see Nullable value types. Because all value types have
/// an accessible parameterless constructor, the struct constraint implies the new()
/// constraint and can't be combined with the new() constraint. You can't combine
/// the struct constraint with the unmanaged constraint.
/// </summary>
/// <typeparam name="T"></typeparam>
internal class GenericClassStruct<T> where T : struct
{
public void Go()
{
Console.WriteLine($"Hello! I am {this.GetType().Name} and my main element is of type {typeof(T)}.");
}
}
/// <summary>
/// The type argument must be a reference type. This constraint applies also to any
/// class, interface, delegate, or array type. In a nullable context in C# 8.0 or
/// later, T must be a non-nullable reference type.
/// </summary>
/// <typeparam name="T"></typeparam>
internal class GenericClassClass<T> where T : class
{
public void Go()
{
Console.WriteLine($"Hello! I am {this.GetType().Name} and my main element is of type {typeof(T)}.");
}
}
/// <summary>
/// The type argument must have a public parameterless constructor. When used together
/// with other constraints, the new() constraint must be specified last. The new()
/// constraint can't be combined with the struct and unmanaged constraints.
/// </summary>
/// <typeparam name="T"></typeparam>
internal class GenericClassNew<T> where T : new()
{
public void Go()
{
Console.WriteLine($"Hello! I am {this.GetType().Name} and my main element is of type {typeof(T)}.");
}
}
/// <summary>
/// The type argument must be a non-nullable unmanaged type. The unmanaged constraint
/// implies the struct constraint and can't be combined with either the struct or new()
/// constraints.
/// </summary>
/// <typeparam name="T"></typeparam>
internal class GenericClassUnmanaged<T> where T : unmanaged
{
public void Go()
{
Console.WriteLine($"Hello! I am {this.GetType().Name} and my main element is of type {typeof(T)}.");
}
}
/// <summary>
/// The type argument must be or derive from the specified base class. In a nullable context
/// in C# 8.0 and later, T must be a non-nullable reference type derived from the specified base class.
/// </summary>
/// <typeparam name="T"></typeparam>
internal class GenericClassBaseClass<T> where T : SomeBaseClass
{
public void Go()
{
Console.WriteLine($"Hello! I am {this.GetType().Name} and my main element is of type {typeof(T)}.");
}
}
/// <summary>
/// The type argument must be or implement the specified interface. Multiple interface constraints
/// can be specified. The constraining interface can also be generic. In a nullable context in C# 8.0
/// and later, T must be a non-nullable type that implements the specified interface.
/// </summary>
/// <typeparam name="T"></typeparam>
internal class GenericClassInterface<T> where T : ISomeInterface
{
public void Go()
{
Console.WriteLine($"Hello! I am {this.GetType().Name} and my main element is of type {typeof(T)}.");
}
}
internal class GenericClassOnlyEnum<T> where T : System.Enum
{
public void Go()
{
Console.WriteLine($"Hello! I am {this.GetType().Name} and my main element is of type {typeof(T)}.");
}
}
internal class GenericClassCombined<T, U> where T : unmanaged where U : ISomeInterface
{
public void Go()
{
Console.WriteLine($"Hello! I am {this.GetType().Name} and my elements are of type {typeof(T)} and {typeof(U)}.");
}
}
public class GenericsSample : SampleExecute
{
public override void Execute()
{
Title("GenericSampleExecute");
var genericClass1 = new GenericClass<int>();
genericClass1.Go();
var genericClass2 = new GenericClass<string>();
genericClass2.Go();
var genericClass3 = new GenericClass<EnumType>();
genericClass3.Go();
var genericClassEnum = new GenericClassStruct<EnumType>();
genericClassEnum.Go();
var genericClassStruct = new GenericClassStruct<StructType>();
genericClassStruct.Go();
var genericClassClass = new GenericClassClass<Collection<int>>();
genericClassClass.Go();
var genericClassNew = new GenericClassNew<ClassWithParameterlessConstructor>();
genericClassNew.Go();
//this producess error, because constructor has parameter:
//Error CS0310 'ClassWithParameterConstructor' must be a non-abstract type with a
//public parameterless constructor in order to use it as parameter 'T' in the generic
//type or method 'GenericClassNew<T>'
//var genericClassNewParam = new GenericClassNew<ClassWithParameterConstructor>();
//genericClassNewParam.Go();
var genericClassUnmanaged = new GenericClassUnmanaged<int>();
genericClassUnmanaged.Go();
//this producess error, because ClassWithParameterlessConstructor in not unmanaged type:
///Error CS8377 The type 'ClassWithParameterlessConstructor' must be a non-nullable
///value type, along with all fields at any level of nesting, in order to use it as
///parameter 'T' in the generic type or method 'GenericClassUnmanaged<T>'
//var genericClassUnmanaged2 = new GenericClassUnmanaged<ClassWithParameterlessConstructor>();
//genericClassUnmanaged2.Go();
var genericClassInterface1 = new GenericClassInterface<ISomeInterface>();
genericClassInterface1.Go();
var genericClassInterface2 = new GenericClassInterface<ClassFromSomeInterface>();
genericClassInterface2.Go();
var genericClassBaseClass1 = new GenericClassBaseClass<SomeBaseClass>();
genericClassBaseClass1.Go();
var genericClassBaseClass2 = new GenericClassBaseClass<SomeClassFromBaseClass>();
genericClassBaseClass2.Go();
Finish();
}
}
}