Skip to content

Commit 8bb381b

Browse files
committed
fix more snippets 5000 errors
1 parent 65a2ad5 commit 8bb381b

File tree

24 files changed

+58
-469
lines changed

24 files changed

+58
-469
lines changed

snippets/visualbasic/System.AddIn.Hosting/AddInController/Overview/My Project/Application.Designer.vb

Lines changed: 0 additions & 13 deletions
This file was deleted.

snippets/visualbasic/System.AddIn.Hosting/AddInController/Overview/My Project/Application.myapp

Lines changed: 0 additions & 10 deletions
This file was deleted.

snippets/visualbasic/System.AddIn.Hosting/AddInController/Overview/My Project/assemblyinfo.vb

Lines changed: 0 additions & 34 deletions
This file was deleted.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
' <Snippet1>
2+
3+
Namespace ListAdaptersHost
4+
Friend Class BookInfo
5+
Friend Function Genre() As Boolean
6+
Throw New NotImplementedException()
7+
End Function
8+
9+
Friend Function Title() As Integer
10+
Throw New NotImplementedException()
11+
End Function
12+
13+
Friend Function Author() As Integer
14+
Throw New NotImplementedException()
15+
End Function
16+
End Class
17+
End Namespace
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
' <Snippet1>
2+
3+
Namespace ListAdaptersHost
4+
Friend Class LibraryManager
5+
Friend Sub ProcessBooks(books As IList(Of BookInfo))
6+
Throw New NotImplementedException()
7+
End Sub
8+
9+
Friend Sub Data(v As String)
10+
Throw New NotImplementedException()
11+
End Sub
12+
13+
Friend Function GetBestSeller() As BookInfo
14+
Throw New NotImplementedException()
15+
End Function
16+
End Class
17+
End Namespace

snippets/visualbasic/System.AddIn.Hosting/AddInController/Shutdown/Program.vb

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -167,30 +167,30 @@ Namespace ListAdaptersHost
167167
_description = description
168168
End Sub
169169

170-
Public Overrides Function ID() As String
171-
Return _id
172-
End Function
173-
174-
Public Overrides Function Title() As String
175-
Return _title
176-
End Function
177-
178-
Public Overrides Function Author() As String
179-
Return _author
180-
End Function
181-
182-
Public Overrides Function Genre() As String
183-
Return _genre
184-
End Function
185-
Public Overrides Function Price() As String
186-
Return _price
187-
End Function
188-
Public Overrides Function Publish_Date() As String
189-
Return _publish_date
190-
End Function
191-
Public Overrides Function Description() As String
192-
Return _description
193-
End Function
170+
'Public Overrides Function ID() As String
171+
' Return _id
172+
'End Function
173+
174+
'Public Overrides Function Title() As String
175+
' Return _title
176+
'End Function
177+
178+
'Public Overrides Function Author() As String
179+
' Return _author
180+
'End Function
181+
182+
'Public Overrides Function Genre() As String
183+
' Return _genre
184+
'End Function
185+
'Public Overrides Function Price() As String
186+
' Return _price
187+
'End Function
188+
'Public Overrides Function Publish_Date() As String
189+
' Return _publish_date
190+
'End Function
191+
'Public Overrides Function Description() As String
192+
' Return _description
193+
'End Function
194194
End Class
195195
End Namespace
196196
' </Snippet1>

snippets/visualbasic/System.AddIn.Hosting/AddInController/Shutdown/Properties/AssemblyInfo.vb

Lines changed: 0 additions & 33 deletions
This file was deleted.

snippets/visualbasic/System.AddIn.Pipeline/AddInAdapterAttribute/Overview/My Project/Application.Designer.vb

Lines changed: 0 additions & 13 deletions
This file was deleted.

snippets/visualbasic/System.AddIn.Pipeline/AddInAdapterAttribute/Overview/My Project/Application.myapp

Lines changed: 0 additions & 10 deletions
This file was deleted.

snippets/visualbasic/System.AddIn.Pipeline/AddInAdapterAttribute/Overview/My Project/assemblyinfo.vb

Lines changed: 0 additions & 34 deletions
This file was deleted.

0 commit comments

Comments
 (0)