(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / btests / PropertyB.vb
blob546f5cb14a5830d00a2c5b3b87d5cb612bc89bdc
1 IMPORTS SYSTEM
2 Module M
3 private i as integer
5 public Property p() as Integer
6 GET
7 return i
8 END GET
10 SET
11 i = Value
12 End SET
14 End Property
16 Sub Main()
17 p = 10
18 Console.WriteLine(p)
19 End Sub
21 End Module