// 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; namespace ICSharpCode.Decompiler.Tests.TestCases.Pretty { internal class Box { public readonly T Value; } 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) { int num = n; for (num = checked(num - 10); num < n; num++) { n--; } } public void ObjectCreationInitializerChecked() { TestHelp(new { x = 0, l = 0 }, n => checked(new { x = n.x + 1, l = n.l + 1 })); } public void ObjectCreationWithOneFieldChecked() { TestHelp(new { x = 0, l = 0 }, n => new { x = checked(n.x + 1), l = n.l + 1 }); } public void ArrayInitializerChecked() { TestHelp(new int[2] { 1, 2 }, (int[] n) => checked(new int[2] { n[0] + 1, n[1] + 1 })); } public T TestHelp(T t, Func f) { return f(t); } public void CheckedInArrayCreationArgument(int a, int b) { Console.WriteLine(new int[checked(a + b)]); } public short Unbox(TypeCode c, object b) { checked { switch (c) { case TypeCode.Int32: return (short)((Box)b).Value; case TypeCode.UInt32: return (short)((Box)b).Value; case TypeCode.Double: { float num = (float)((Box)b).Value; Console.WriteLine(num); return (short)num; } default: throw new Exception(); } } } } }