FAQ/many-to-many-database-join.md
... ...
@@ -16,18 +16,18 @@ First, we need an instance variable to hold a reference to the driver.
16 16
17 17
``` csharp
18 18
Public Class CustomAdHocConfig : FileSystemAdHocConfig
19
- private oldDriver As Driver = null;
19
+ private Driver oldDriver = null;
20 20
21
- {...} 'InitializeReporting, PreExecuteReportSet, etc.
21
+ {...} //InitializeReporting, PreExecuteReportSet, etc.
22 22
End Class
23 23
```
24 24
25 25
``` visualbasic
26 26
public class CustomAdHocConfig Inherits FileSystemAdHocConfig
27 27
{
28
- private oldDriver As Drier = Nothing
28
+ private oldDriver As Driver = Nothing
29 29
30
- {...} //InitializeReporting, PreExecuteReportSet, etc.
30
+ {...} 'InitializeReporting, PreExecuteReportSet, etc.
31 31
}
32 32
```
33 33