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

types.il « il « Resources « Test - github.com/mono/cecil.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e0e2d78450ff58e1e8fcc1a93ee1483e31e2b9f6 (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
.assembly extern mscorlib
{
  .publickeytoken = (B7 7A 5C 56 19 34 E0 89)
  .ver 2:0:0:0
}

.assembly Types {}

.module Types.dll

.class private auto ansi Types {

	.field public int32[,] rank_two
	.field public int32[0...,0...] rank_two_low_bound_zero
	.field public int32[-1...4] rank_one_low_bound_m1

	.method public specialname rtspecialname instance void .ctor () cil managed
	{
		ldarg.0
		call instance void [mscorlib]System.Object::.ctor ()
		ret
	}
}

.class interface private abstract auto ansi IFoo
{
}

.class interface private abstract auto ansi IBar
       implements IFoo
{
}

.class interface private abstract IBaz
       implements IBar, IFoo
{
}