(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / mbas / Test / tests / PropertyC.vb
bloba422654df357753a2691e76c85d812030b817c5f
1 Imports system
3 Module M
4 private i as integer
6 public Property p(ByVal x as Integer) as Integer
7 GET
8 return i
9 END GET
11 SET (ByVal val as Integer)
12 i = val
13 End SET
15 End Property
17 Sub Main()
18 p(5) = 10
19 'Console.WriteLine(p)
20 End Sub
22 End Module