https://github.com/axtens/spreadsheetlight
My fork of Vincent Tan's SpreadsheetLight
https://github.com/axtens/spreadsheetlight
Last synced: about 1 year ago
JSON representation
My fork of Vincent Tan's SpreadsheetLight
- Host: GitHub
- URL: https://github.com/axtens/spreadsheetlight
- Owner: axtens
- License: mit
- Created: 2020-08-25T02:36:51.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-08-25T02:38:54.000Z (almost 6 years ago)
- Last Synced: 2025-01-31T06:41:51.974Z (over 1 year ago)
- Language: C#
- Size: 484 KB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SpreadsheetLight
My fork of Vincent Tan's life-saving tool
I have not changed anything of note other than targeting a more recent DocumentFormat.OpenXML and making the code more C#6-ish.
Added references to System.Drawing and System.Windows.Forms.
Commented out the references to SmartTags.
With Refactoring Essentials, Roslynator and Roslynator Refactorings tools installed, had an interesting time learning about the kind of C# one ends up with after those tools have a look at one's code. For example:
dictBuiltInNumberingFormat = new Dictionary
{
[0] = SLConstants.NumberFormatGeneral,
[1] = "0",
[2] = "0.00",
[3] = "#,##0",
[4] = "#,##0.00",
[9] = "0%",
[10] = "0.00%",
[11] = "0.00E+00",
[12] = "# ?/?",
[13] = "# ??/??", ...