summaryrefslogtreecommitdiff
path: root/tests/src/baseservices/compilerservices/RuntimeHelpers/ExecuteCodeWithGuaranteedCleanup.cs
blob: 58cee3ca363a35741f5f0ac7401eeddc8a29cd3e (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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
//
using System;
using System.Runtime.CompilerServices;

namespace GCD
{
    /// <summary>
    /// Summary description for Class1.
    /// </summary>
    class GCD
    {
        private int _val = -2;
        private int _exitcode = -1;
        public GCD() {}
        public int GetExitCode(){ return _exitcode;}
        public void g ()
        {
            throw new System.Exception("TryCode test");
        }
        public void TryCode0 (object obj)
        {
            _val = (int)obj;
            g();
        }
        public void CleanupCode0 (object obj, bool excpThrown)
        {
            if(excpThrown && ((int)obj == _val))
            {
                _exitcode = 100;
            }
        }
    }


    class GCDTest 
    {
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        [STAThread]
            static int Main(string[] args)
            {
                GCD gcd = new GCD();
                RuntimeHelpers.TryCode t = new RuntimeHelpers.TryCode(gcd.TryCode0);
                RuntimeHelpers.CleanupCode c = new RuntimeHelpers.CleanupCode(gcd.CleanupCode0);
                int val = 21;
                try
                {
                    RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(t, c, val);
                }
                catch (Exception Ex)
                {

                }

                return gcd.GetExitCode();
            }
    }
}