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

test-443-lib.il « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f0e0583231faecba7e18303aa2fcd016f74a7b0d (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
.assembly extern mscorlib { }

.assembly 'test-443-lib' { }

.namespace Test {

.class interface public abstract auto ansi import ITopic
{
      .property string Title(int32)
      {
            .get instance string Test.ITopic::get_Title(int32, int32)
			.set instance string Test.ITopic::set_Title(int32, int32, bool, string)
      }
	  
	.method public hidebysig newslot specialname abstract virtual instance string get_Title(int32, int32) runtime managed internalcall
	{
	}
	
	.method public hidebysig newslot specialname abstract virtual instance string set_Title(int32, int32, bool, string) runtime managed internalcall
	{
	}
	
}
}