mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
650 B
29 lines
650 B
Imports System |
|
Imports System.IO |
|
|
|
Module Program |
|
Sub Main(args As String()) |
|
|
|
End Sub |
|
|
|
Sub TestCode(ByVal t As Test, ByVal i As Integer) |
|
Dim s As String = "" |
|
s += File.ReadAllText("Test.txt") |
|
s += "asdf" |
|
t.Parameterized(i) = s |
|
t.Unparameterized = s + "asdf" |
|
End Sub |
|
End Module |
|
|
|
Class Test |
|
Public Property Parameterized(ByVal i As Integer) As String |
|
Get |
|
Throw New NotImplementedException() |
|
End Get |
|
Set(value As String) |
|
Throw New NotImplementedException() |
|
End Set |
|
End Property |
|
|
|
Public Property Unparameterized As String |
|
End Class |