summaryrefslogtreecommitdiff
path: root/ICSharpCode.Decompiler/Tests/CheckedUnchecked.cs
blob: fd1c4d89f35d555c866e331f3680e9b94a9843df (plain)
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
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team
// 
// Permission is hereby granted, free of charge, to any person obtaining a copy of this
// software and associated documentation files (the "Software"), to deal in the Software
// without restriction, including without limitation the rights to use, copy, modify, merge,
// publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons
// to whom the Software is furnished to do so, subject to the following conditions:
// 
// The above copyright notice and this permission notice shall be included in all copies or
// substantial portions of the Software.
// 
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
// INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
// PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
// FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.

using System;

public class CheckedUnchecked
{
	public int Operators(int a, int b)
	{
		int num = checked(a + b);
		int num2 = a + b;
		int num3 = checked(a - b);
		int num4 = a - b;
		int num5 = checked(a * b);
		int num6 = a * b;
		int num7 = a / b;
		int num8 = a % b;
		// The division operators / and % only exist in one form (checked vs. unchecked doesn't matter for them)
		return num * num2 * num3 * num4 * num5 * num6 * num7 * num8;
	}
	
	public int Cast(int a)
	{
		short num = checked((short)a);
		short num2 = (short)a;
		byte b = checked((byte)a);
		byte b2 = (byte)a;
		return num * num2 * b * b2;
	}
	
	public void ForWithCheckedIteratorAndUncheckedBody(int n)
	{
		checked
		{
			for (int i = n + 1; i < n + 1; i++)
			{
				n = unchecked(i * i);
			}
		}
	}
	
	public void ForWithCheckedInitializerAndUncheckedIterator(int n)
	{
		checked
		{
			int i = n;
			for (i -= 10; i < n; i = unchecked(i + 1))
			{
				n--;
			}
		}
	}
	public void ObjectCreationInitializerChecked() 
	{
		this.TestHelp(new
		{
			x = 0,
			l = 0
		}, n => checked(new
		{
			x = n.x + 1, 
			l = n.l + 1
		}));
	}

	public void ObjectCreationWithOneFieldChecked() 
	{
		this.TestHelp(new 
		{
			x = 0,
			l = 0
		}, n => new 
		{
			x = checked(n.x + 1), 
			l = n.l + 1 
		});
	}

	
	public void ArrayInitializerChecked() 
	{
		this.TestHelp<int[]>(new int[]
		{
			1,
			2
		}, (int[] n) => checked(new int[]
		{
			n[0] + 1,
			n[1] + 1
		}));
	}

	public T TestHelp<T>(T t, Func<T, T> f)
	{
		return f(t);
	}
	
	public void CheckedInArrayCreationArgument(int a, int b)
	{
		Console.WriteLine(new int[checked(a + b)]);
	}
}