-
Notifications
You must be signed in to change notification settings - Fork 0
/
DataTableConverter.cs
208 lines (184 loc) · 6.88 KB
/
DataTableConverter.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SharpStackConvert
{
public static class DataTableConverter
{
/// <summary>
/// Converts a jagged array of strings into a DataTable.
/// </summary>
/// <param name="rows">The jagged array of strings to convert.</param>
/// <returns>A DataTable containing the converted data.</returns>
public static DataTable ToTable(this string[][] rows)
{
DataTable dt = new DataTable("Tbl");
if (rows.Length > 0)
{
for (int i = 0; i < rows[0].Length; i++)
{
dt.Columns.Add("Col" + i.ToString());
}
foreach (string[] row in rows)
{
dt.Rows.Add(row);
}
}
return dt;
}
/// <summary>
/// Converts a two-dimensional string array to a DataTable.
/// </summary>
/// <param name="rows">The two-dimensional string array to convert.</param>
/// <returns>A DataTable containing the data from the two-dimensional string array.</returns>
public static DataTable ToTable(this string[,] rows)
{
DataTable dt = new DataTable("Tbl");
if (rows.Length > 0)
{
for (int i = 0; i < rows.GetLength(1); i++)
{
dt.Columns.Add("Col" + i.ToString());
}
for (int i = 0; i < rows.GetLength(0); i++)
{
string[] row = new string[rows.GetLength(1)];
for (int j = 0; j < rows.GetLength(1); j++)
{
row[j] = rows[i, j];
}
dt.Rows.Add(row);
}
}
return dt;
}
/// <summary>
/// Converts an array of strings into a DataTable.
/// </summary>
/// <param name="rows">The array of strings to convert.</param>
/// <returns>A DataTable containing the converted data.</returns>
public static DataTable ToTable(this string[] rows)
{
DataTable dt = new DataTable("Tbl");
if (rows.Length > 0)
{
for (int i = 0; i < rows.Length; i++)
{
dt.Columns.Add("Col" + i.ToString());
}
dt.Rows.Add(rows);
}
return dt;
}
/// <summary>
/// Converts an array of strings into a DataTable with the specified table name.
/// </summary>
/// <param name="rows">The array of strings to convert.</param>
/// <param name="tableName">The name of the DataTable.</param>
/// <returns>The converted DataTable.</returns>
public static DataTable ToTable(this string[] rows, string tableName)
{
DataTable dt = new DataTable(tableName);
if (rows.Length > 0)
{
for (int i = 0; i < rows.Length; i++)
{
dt.Columns.Add("Col" + i.ToString());
}
dt.Rows.Add(rows);
}
return dt;
}
/// <summary>
/// Converts a two-dimensional string array into a DataTable.
/// </summary>
/// <param name="rows">The two-dimensional string array to convert.</param>
/// <param name="FirstRowIsHeader">A boolean value indicating whether the first row of the array should be treated as the header row of the DataTable.</param>
/// <returns>A DataTable containing the data from the string array.</returns>
public static DataTable ToTable(this string[,] rows, bool FirstRowIsHeader)
{
DataTable dt = new DataTable("Tbl");
if (rows.Length > 0)
{
if (FirstRowIsHeader)
{
for (int i = 0; i < rows.GetLength(1); i++)
{
dt.Columns.Add(rows[0, i]);
}
for (int i = 1; i < rows.GetLength(0); i++)
{
string[] row = new string[rows.GetLength(1)];
for (int j = 0; j < rows.GetLength(1); j++)
{
row[j] = rows[i, j];
}
dt.Rows.Add(row);
}
}
else
{
for (int i = 0; i < rows.GetLength(1); i++)
{
dt.Columns.Add("Col" + i.ToString());
}
for (int i = 0; i < rows.GetLength(0); i++)
{
string[] row = new string[rows.GetLength(1)];
for (int j = 0; j < rows.GetLength(1); j++)
{
row[j] = rows[i, j];
}
dt.Rows.Add(row);
}
}
}
return dt;
}
/// <summary>
/// Converts a list of string arrays into a DataTable.
/// </summary>
/// <param name="rows">The list of string arrays to convert.</param>
/// <param name="FirstRowIsHeader">Indicates whether the first row should be treated as the header row.</param>
/// <param name="tableName">The name of the resulting DataTable.</param>
/// <returns>The converted DataTable.</returns>
public static DataTable ToTable(this List<string[]> rows, bool FirstRowIsHeader = true, string tableName = "Tbl")
{
DataTable dt = new DataTable(tableName);
if (rows != null && rows.Count > 0)
{
if (FirstRowIsHeader)
{
for (int i = 0; i < rows[0].Length; i++)
{
dt.Columns.Add(rows[0][i]);
}
for (int i = 1; i < rows.Count; i++)
{
string[] row = new string[rows[0].Length];
for (int j = 0; j < rows[0].Length; j++)
{
row[j] = rows[i][j];
}
dt.Rows.Add(row);
}
}
else
{
for (int i = 0; i < rows[0].Length; i++)
{
dt.Columns.Add("Col" + i.ToString());
}
foreach (string[] row in rows)
{
dt.Rows.Add(row);
}
}
}
return dt;
}
}
}