Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test.cs « debugger-test-with-full-debug-type « tests « debugger « wasm « mono « src - github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 64609af24a547fa525886334dc769a44208ccb10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;

namespace DebuggerTests
{
    public class ClassToInspectWithDebugTypeFull
    {
        int a;
        int b;
        int c;
        public ClassToInspectWithDebugTypeFull()
        {
            a = 10;
            b = 20;
            c = 30;
            Console.WriteLine(a);
            Console.WriteLine(b);
            Console.WriteLine(c);
        }
    }
}