-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathLoadingDataFromCollection.vb
More file actions
24 lines (21 loc) · 1.07 KB
/
LoadingDataFromCollection.vb
File metadata and controls
24 lines (21 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Imports EPPlusSamples.LoadingData
Imports System
Namespace EPPlusSamples.ImportAndExport
Public Module LoadingDataFromCollection
Public Sub Run()
'Sample 4 - Shows a few ways to load data (Datatable, IEnumerable and more).
Console.WriteLine("Running sample 4 - LoadingDataWithTables")
Call LoadingDataWithTablesSample.Run()
Console.WriteLine("Sample 2.1 (LoadingDataWithTables) created {0}", FileUtil.OutputDir.Name)
Console.WriteLine()
'Sample 4 - Shows how to load dynamic/ExpandoObject
Call LoadingDataWithDynamicObjects.Run()
Console.WriteLine("Sample 2.1 (LoadingDataWithDynamicObjects) created {0}", FileUtil.OutputDir.Name)
Console.WriteLine()
' Sample 4 - LoadFromCollectionWithAttributes
Call LoadingDataFromCollectionWithAttributes.Run()
Console.WriteLine("Sample 2.1 (LoadingDataFromCollectionWithAttributes) created {0}", FileUtil.OutputDir.Name)
Console.WriteLine()
End Sub
End Module
End Namespace