diff --git a/Performance Metrics/Excel to HTML/Boolean Data Type/.NET/Boolean Data Type/Boolean Data Type.slnx b/Performance Metrics/Excel to HTML/Boolean Data Type/.NET/Boolean Data Type/Boolean Data Type.slnx new file mode 100644 index 00000000..ba4475b4 --- /dev/null +++ b/Performance Metrics/Excel to HTML/Boolean Data Type/.NET/Boolean Data Type/Boolean Data Type.slnx @@ -0,0 +1,3 @@ + + + diff --git a/Performance Metrics/Excel to HTML/Boolean Data Type/.NET/Boolean Data Type/Boolean Data Type/Boolean Data Type.csproj b/Performance Metrics/Excel to HTML/Boolean Data Type/.NET/Boolean Data Type/Boolean Data Type/Boolean Data Type.csproj new file mode 100644 index 00000000..9b6cf8c0 --- /dev/null +++ b/Performance Metrics/Excel to HTML/Boolean Data Type/.NET/Boolean Data Type/Boolean Data Type/Boolean Data Type.csproj @@ -0,0 +1,25 @@ + + + + Exe + net10.0 + Boolean_Data_Type + enable + enable + + + + + + + + + + Always + + + Always + + + + diff --git a/Performance Metrics/Excel to HTML/Boolean Data Type/.NET/Boolean Data Type/Boolean Data Type/Data/InputTemplate.xlsx b/Performance Metrics/Excel to HTML/Boolean Data Type/.NET/Boolean Data Type/Boolean Data Type/Data/InputTemplate.xlsx new file mode 100644 index 00000000..f268fc36 Binary files /dev/null and b/Performance Metrics/Excel to HTML/Boolean Data Type/.NET/Boolean Data Type/Boolean Data Type/Data/InputTemplate.xlsx differ diff --git a/Performance Metrics/Excel to HTML/Boolean Data Type/.NET/Boolean Data Type/Boolean Data Type/Output/.gitkeep b/Performance Metrics/Excel to HTML/Boolean Data Type/.NET/Boolean Data Type/Boolean Data Type/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Performance Metrics/Excel to HTML/Boolean Data Type/.NET/Boolean Data Type/Boolean Data Type/Program.cs b/Performance Metrics/Excel to HTML/Boolean Data Type/.NET/Boolean Data Type/Boolean Data Type/Program.cs new file mode 100644 index 00000000..450dd61f --- /dev/null +++ b/Performance Metrics/Excel to HTML/Boolean Data Type/.NET/Boolean Data Type/Boolean Data Type/Program.cs @@ -0,0 +1,28 @@ +using Syncfusion.XlsIO; + +namespace Boolean_Data_Type +{ + class Program + { + static void Main(string[] args) + { + using (ExcelEngine excelEngine = new ExcelEngine()) + { + IApplication application = excelEngine.Excel; + application.DefaultVersion = ExcelVersion.Xlsx; + + //Load existing Excel file + IWorkbook workbook = application.Workbooks.Open(Path.GetFullPath(@"Data/InputTemplate.xlsx")); + + //Create stream to store HTML file. + Stream stream = new MemoryStream(); + + //Save a workbook as HTML file + workbook.SaveAsHtml(stream, Syncfusion.XlsIO.Implementation.HtmlSaveOptions.Default); + + stream.Dispose(); + workbook.Close(); + } + } + } +} \ No newline at end of file diff --git a/Performance Metrics/Excel to HTML/DateTime Data Type/.NET/DateTime Data Type/DateTime Data Type.slnx b/Performance Metrics/Excel to HTML/DateTime Data Type/.NET/DateTime Data Type/DateTime Data Type.slnx new file mode 100644 index 00000000..e82b5fe6 --- /dev/null +++ b/Performance Metrics/Excel to HTML/DateTime Data Type/.NET/DateTime Data Type/DateTime Data Type.slnx @@ -0,0 +1,3 @@ + + + diff --git a/Performance Metrics/Excel to HTML/DateTime Data Type/.NET/DateTime Data Type/DateTime Data Type/Data/InputTemplate.xlsx b/Performance Metrics/Excel to HTML/DateTime Data Type/.NET/DateTime Data Type/DateTime Data Type/Data/InputTemplate.xlsx new file mode 100644 index 00000000..21645baf Binary files /dev/null and b/Performance Metrics/Excel to HTML/DateTime Data Type/.NET/DateTime Data Type/DateTime Data Type/Data/InputTemplate.xlsx differ diff --git a/Performance Metrics/Excel to HTML/DateTime Data Type/.NET/DateTime Data Type/DateTime Data Type/DateTime Data Type.csproj b/Performance Metrics/Excel to HTML/DateTime Data Type/.NET/DateTime Data Type/DateTime Data Type/DateTime Data Type.csproj new file mode 100644 index 00000000..09cb94e4 --- /dev/null +++ b/Performance Metrics/Excel to HTML/DateTime Data Type/.NET/DateTime Data Type/DateTime Data Type/DateTime Data Type.csproj @@ -0,0 +1,24 @@ + + + + Exe + net10.0 + DateTime_Data_Type + enable + enable + + + + + + + + + Always + + + Always + + + + diff --git a/Performance Metrics/Excel to HTML/DateTime Data Type/.NET/DateTime Data Type/DateTime Data Type/Output/.gitkeep b/Performance Metrics/Excel to HTML/DateTime Data Type/.NET/DateTime Data Type/DateTime Data Type/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Performance Metrics/Excel to HTML/DateTime Data Type/.NET/DateTime Data Type/DateTime Data Type/Program.cs b/Performance Metrics/Excel to HTML/DateTime Data Type/.NET/DateTime Data Type/DateTime Data Type/Program.cs new file mode 100644 index 00000000..3bf5c4f9 --- /dev/null +++ b/Performance Metrics/Excel to HTML/DateTime Data Type/.NET/DateTime Data Type/DateTime Data Type/Program.cs @@ -0,0 +1,29 @@ +using Syncfusion.XlsIO; + + +namespace DateTime_Data_Type +{ + class Program + { + static void Main(string[] args) + { + using (ExcelEngine excelEngine = new ExcelEngine()) + { + IApplication application = excelEngine.Excel; + application.DefaultVersion = ExcelVersion.Xlsx; + + //Load existing Excel file + IWorkbook workbook = application.Workbooks.Open(Path.GetFullPath(@"Data/InputTemplate.xlsx")); + + //Create stream to store HTML file. + Stream stream = new MemoryStream(); + + //Save a workbook as HTML file + workbook.SaveAsHtml(stream, Syncfusion.XlsIO.Implementation.HtmlSaveOptions.Default); + + stream.Dispose(); + workbook.Close(); + } + } + } +} \ No newline at end of file diff --git a/Performance Metrics/Excel to HTML/Formula Data Type/.NET/Formula Data Type/Formula Data Type.slnx b/Performance Metrics/Excel to HTML/Formula Data Type/.NET/Formula Data Type/Formula Data Type.slnx new file mode 100644 index 00000000..95aee489 --- /dev/null +++ b/Performance Metrics/Excel to HTML/Formula Data Type/.NET/Formula Data Type/Formula Data Type.slnx @@ -0,0 +1,3 @@ + + + diff --git a/Performance Metrics/Excel to HTML/Formula Data Type/.NET/Formula Data Type/Formula Data Type/Data/InputTemplate.xlsx b/Performance Metrics/Excel to HTML/Formula Data Type/.NET/Formula Data Type/Formula Data Type/Data/InputTemplate.xlsx new file mode 100644 index 00000000..2192aee0 Binary files /dev/null and b/Performance Metrics/Excel to HTML/Formula Data Type/.NET/Formula Data Type/Formula Data Type/Data/InputTemplate.xlsx differ diff --git a/Performance Metrics/Excel to HTML/Formula Data Type/.NET/Formula Data Type/Formula Data Type/Formula Data Type.csproj b/Performance Metrics/Excel to HTML/Formula Data Type/.NET/Formula Data Type/Formula Data Type/Formula Data Type.csproj new file mode 100644 index 00000000..b5e2f199 --- /dev/null +++ b/Performance Metrics/Excel to HTML/Formula Data Type/.NET/Formula Data Type/Formula Data Type/Formula Data Type.csproj @@ -0,0 +1,24 @@ + + + + Exe + net10.0 + Formula_Data_Type + enable + enable + + + + + + + + + Always + + + Always + + + + diff --git a/Performance Metrics/Excel to HTML/Formula Data Type/.NET/Formula Data Type/Formula Data Type/Output/.gitkeep b/Performance Metrics/Excel to HTML/Formula Data Type/.NET/Formula Data Type/Formula Data Type/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Performance Metrics/Excel to HTML/Formula Data Type/.NET/Formula Data Type/Formula Data Type/Program.cs b/Performance Metrics/Excel to HTML/Formula Data Type/.NET/Formula Data Type/Formula Data Type/Program.cs new file mode 100644 index 00000000..0bf390ae --- /dev/null +++ b/Performance Metrics/Excel to HTML/Formula Data Type/.NET/Formula Data Type/Formula Data Type/Program.cs @@ -0,0 +1,28 @@ +using Syncfusion.XlsIO; + +namespace Formula_Data_Type +{ + class Program + { + static void Main(string[] args) + { + using (ExcelEngine excelEngine = new ExcelEngine()) + { + IApplication application = excelEngine.Excel; + application.DefaultVersion = ExcelVersion.Xlsx; + + //Load existing Excel file + IWorkbook workbook = application.Workbooks.Open(Path.GetFullPath(@"Data/InputTemplate.xlsx")); + + //Create stream to store HTML file. + Stream stream = new MemoryStream(); + + //Save a workbook as HTML file + workbook.SaveAsHtml(stream, Syncfusion.XlsIO.Implementation.HtmlSaveOptions.Default); + + stream.Dispose(); + workbook.Close(); + } + } + } +} \ No newline at end of file diff --git a/Performance Metrics/Excel to HTML/Number Data Type/.NET/Number Data Type/Number Data Type.slnx b/Performance Metrics/Excel to HTML/Number Data Type/.NET/Number Data Type/Number Data Type.slnx new file mode 100644 index 00000000..9ebb9640 --- /dev/null +++ b/Performance Metrics/Excel to HTML/Number Data Type/.NET/Number Data Type/Number Data Type.slnx @@ -0,0 +1,3 @@ + + + diff --git a/Performance Metrics/Excel to HTML/Number Data Type/.NET/Number Data Type/Number Data Type/Data/InputTemplate.xlsx b/Performance Metrics/Excel to HTML/Number Data Type/.NET/Number Data Type/Number Data Type/Data/InputTemplate.xlsx new file mode 100644 index 00000000..13ed91da Binary files /dev/null and b/Performance Metrics/Excel to HTML/Number Data Type/.NET/Number Data Type/Number Data Type/Data/InputTemplate.xlsx differ diff --git a/Performance Metrics/Excel to HTML/Number Data Type/.NET/Number Data Type/Number Data Type/Number Data Type.csproj b/Performance Metrics/Excel to HTML/Number Data Type/.NET/Number Data Type/Number Data Type/Number Data Type.csproj new file mode 100644 index 00000000..08c2cc6c --- /dev/null +++ b/Performance Metrics/Excel to HTML/Number Data Type/.NET/Number Data Type/Number Data Type/Number Data Type.csproj @@ -0,0 +1,24 @@ + + + + Exe + net10.0 + Number_Data_Type + enable + enable + + + + + + + + + Always + + + Always + + + + diff --git a/Performance Metrics/Excel to HTML/Number Data Type/.NET/Number Data Type/Number Data Type/Output/.gitkeep b/Performance Metrics/Excel to HTML/Number Data Type/.NET/Number Data Type/Number Data Type/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Performance Metrics/Excel to HTML/Number Data Type/.NET/Number Data Type/Number Data Type/Program.cs b/Performance Metrics/Excel to HTML/Number Data Type/.NET/Number Data Type/Number Data Type/Program.cs new file mode 100644 index 00000000..eafcffa2 --- /dev/null +++ b/Performance Metrics/Excel to HTML/Number Data Type/.NET/Number Data Type/Number Data Type/Program.cs @@ -0,0 +1,28 @@ +using Syncfusion.XlsIO; + +namespace Number_Data_Type +{ + class Program + { + static void Main(string[] args) + { + using (ExcelEngine excelEngine = new ExcelEngine()) + { + IApplication application = excelEngine.Excel; + application.DefaultVersion = ExcelVersion.Xlsx; + + //Load existing Excel file + IWorkbook workbook = application.Workbooks.Open(Path.GetFullPath(@"Data/InputTemplate.xlsx")); + + //Create stream to store HTML file. + Stream stream = new MemoryStream(); + + //Save a workbook as HTML file + workbook.SaveAsHtml(stream, Syncfusion.XlsIO.Implementation.HtmlSaveOptions.Default); + + stream.Dispose(); + workbook.Close(); + } + } + } +} \ No newline at end of file diff --git a/Performance Metrics/Excel to HTML/String Data Type/.NET/String Data Type/String Data Type.slnx b/Performance Metrics/Excel to HTML/String Data Type/.NET/String Data Type/String Data Type.slnx new file mode 100644 index 00000000..9d40052d --- /dev/null +++ b/Performance Metrics/Excel to HTML/String Data Type/.NET/String Data Type/String Data Type.slnx @@ -0,0 +1,3 @@ + + + diff --git a/Performance Metrics/Excel to HTML/String Data Type/.NET/String Data Type/String Data Type/Data/InputTemplate.xlsx b/Performance Metrics/Excel to HTML/String Data Type/.NET/String Data Type/String Data Type/Data/InputTemplate.xlsx new file mode 100644 index 00000000..016e3994 Binary files /dev/null and b/Performance Metrics/Excel to HTML/String Data Type/.NET/String Data Type/String Data Type/Data/InputTemplate.xlsx differ diff --git a/Performance Metrics/Excel to HTML/String Data Type/.NET/String Data Type/String Data Type/Output/.gitkeep b/Performance Metrics/Excel to HTML/String Data Type/.NET/String Data Type/String Data Type/Output/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/Performance Metrics/Excel to HTML/String Data Type/.NET/String Data Type/String Data Type/Program.cs b/Performance Metrics/Excel to HTML/String Data Type/.NET/String Data Type/String Data Type/Program.cs new file mode 100644 index 00000000..773515f0 --- /dev/null +++ b/Performance Metrics/Excel to HTML/String Data Type/.NET/String Data Type/String Data Type/Program.cs @@ -0,0 +1,28 @@ +using Syncfusion.XlsIO; + +namespace String_Data_Type +{ + class Program + { + static void Main(string[] args) + { + using (ExcelEngine excelEngine = new ExcelEngine()) + { + IApplication application = excelEngine.Excel; + application.DefaultVersion = ExcelVersion.Xlsx; + + //Load existing Excel file + IWorkbook workbook = application.Workbooks.Open(Path.GetFullPath(@"Data/InputTemplate.xlsx")); + + //Create stream to store HTML file. + Stream stream = new MemoryStream(); + + //Save a workbook as HTML file + workbook.SaveAsHtml(stream, Syncfusion.XlsIO.Implementation.HtmlSaveOptions.Default); + + stream.Dispose(); + workbook.Close(); + } + } + } +} \ No newline at end of file diff --git a/Performance Metrics/Excel to HTML/String Data Type/.NET/String Data Type/String Data Type/String Data Type.csproj b/Performance Metrics/Excel to HTML/String Data Type/.NET/String Data Type/String Data Type/String Data Type.csproj new file mode 100644 index 00000000..eb10b140 --- /dev/null +++ b/Performance Metrics/Excel to HTML/String Data Type/.NET/String Data Type/String Data Type/String Data Type.csproj @@ -0,0 +1,24 @@ + + + + Exe + net10.0 + String_Data_Type + enable + enable + + + + + + + + + Always + + + Always + + + +