-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProbe.cs
33 lines (29 loc) · 925 Bytes
/
Probe.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
// Copyright © 2019, EPSITEC SA, CH-1400 Yverdon-les-Bains, Switzerland
// Author: Pierre ARNAUD, Maintainer: Pierre ARNAUD
namespace Experiment.NullableTypeReflection
{
public class Probe
{
public string A { get; set; }
public string? B { get; set; }
public string? C { get; }
public int[] ArrayA { get; set; }
public int[]? ArrayB { get; set; }
public string[]? ArrayC { get; set; }
public string?[] ArrayD { get; set; }
public string?[]? ArrayE { get; set; }
public int N { get; }
public Probe(string? a, string? b, string? c, int n)
{
this.A = a ?? "";
this.B = b;
this.C = c;
this.N = n;
this.ArrayA = null!;
this.ArrayB = null;
this.ArrayC = null;
this.ArrayD = null!;
this.ArrayE = null;
}
}
}