forked from VR2VYE/OpenGD77CPS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Class13.cs
86 lines (70 loc) · 1.2 KB
/
Class13.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
using System.Runtime.CompilerServices;
public class Class13
{
private int _minVal;
private int _maxVal;
private int _incVal;
private decimal _SdVal;
private int _MaxLen;
public Class13()
{
}
public Class13(int int_0, int int_1, int int_2, decimal decimal_0, int int_3)
{
this.method_1(int_0);
this.method_3(int_1);
this.method_5(int_2);
this.method_7(decimal_0);
this.method_9(int_3);
}
[CompilerGenerated]
public int method_0()
{
return this._minVal;
}
[CompilerGenerated]
public void method_1(int int_0)
{
this._minVal = int_0;
}
[CompilerGenerated]
public int method_2()
{
return this._maxVal;
}
[CompilerGenerated]
public void method_3(int int_0)
{
this._maxVal = int_0;
}
[CompilerGenerated]
public int method_4()
{
return this._incVal;
}
[CompilerGenerated]
public void method_5(int int_0)
{
this._incVal = int_0;
}
[CompilerGenerated]
public decimal method_6()
{
return this._SdVal;
}
[CompilerGenerated]
public void method_7(decimal decimal_0)
{
this._SdVal = decimal_0;
}
[CompilerGenerated]
public int method_8()
{
return this._MaxLen;
}
[CompilerGenerated]
public void method_9(int int_0)
{
this._MaxLen = int_0;
}
}