-
-
Notifications
You must be signed in to change notification settings - Fork 6
csvsharp #412
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
csvsharp #412
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| # Just later | ||
|
|
||
| ## Latest Update : 2025-10-04 => 04 October 2025 | ||
| ## Latest Update : 2025-10-05 => 05 October 2025 | ||
|
|
||
|
|
||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,64 @@ | ||
|
|
||
| <h1>RSCG nr 235 : Csvcsharp</h1> | ||
|
|
||
| <h2>Info</h2> | ||
| Nuget : <a href="https://www.nuget.org/packages/Csvcsharp/" target="_blank">https://www.nuget.org/packages/Csvcsharp/</a> | ||
|
|
||
| <p>You can find more details at : <a href="https://github.com/nuskey8/Csv-CSharp" target="_blank"> https://github.com/nuskey8/Csv-CSharp</a></p> | ||
|
|
||
| <p>Author :Yusuke Nakada</p> | ||
|
|
||
| <p>Source: <a href="https://github.com/nuskey8/Csv-CSharp" target="_blank">https://github.com/nuskey8/Csv-CSharp</a> </p> | ||
|
|
||
| <h2>About</h2> | ||
|
|
||
| Serializer for CSV files | ||
|
|
||
| <h2> | ||
| How to use | ||
| </h2> | ||
| <h3> | ||
| Add reference to the <a href="https://www.nuget.org/packages/Csvcsharp/" target="_blank">Csvcsharp</a> in the csproj | ||
| </h3> | ||
| <img src="images/Csvcsharp/Serializer.csproj.png" width="580" height="580" /> | ||
|
|
||
| <h3>This was for me the <b>starting</b> code</h3> | ||
|
|
||
| <br /> | ||
| I have <b>coded</b> the file Program.cs | ||
| <br /> | ||
| <img src="images/Csvcsharp/csFiles/Program.cs.png" width="580" height="580" /> | ||
| <hr /> | ||
|
|
||
| <br /> | ||
| I have <b>coded</b> the file Person.cs | ||
| <br /> | ||
| <img src="images/Csvcsharp/csFiles/Person.cs.png" width="580" height="580" /> | ||
| <hr /> | ||
| <h3>And here are the <i>generated</i> files</h3> | ||
|
|
||
| <br /> | ||
| The file <i>generated</i> is SerializerDemo.Person.CsvSerializer.g.cs | ||
| <br /> | ||
| <img src="images/Csvcsharp/generated/SerializerDemo.Person.CsvSerializer.g.cs.png" width="580" height="580" /> | ||
|
|
||
| <br /> | ||
| The file <i>generated</i> is SerializerDemo.Person.YamlFormatter.g.cs | ||
| <br /> | ||
| <img src="images/Csvcsharp/generated/SerializerDemo.Person.YamlFormatter.g.cs.png" width="580" height="580" /> | ||
|
|
||
| <p> | ||
| You can download the code and this page as pdf from | ||
| <a target="_blank" href='https://ignatandrei.github.io/RSCG_Examples/v2/docs/Csvcsharp'> | ||
| https://ignatandrei.github.io/RSCG_Examples/v2/docs/Csvcsharp | ||
| </a> | ||
| </p> | ||
|
|
||
|
|
||
| <p> | ||
| You can see the whole list at | ||
| <a target="_blank" href='https://ignatandrei.github.io/RSCG_Examples/v2/docs/List-of-RSCG'> | ||
| https://ignatandrei.github.io/RSCG_Examples/v2/docs/List-of-RSCG | ||
| </a> | ||
| </p> | ||
|
|
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -17,7 +17,7 @@ | |
| </head> | ||
| <body> | ||
| <h1> | ||
| This is the list of 234 RSCG with examples => | ||
| This is the list of 235 RSCG with examples => | ||
| </h1> | ||
|
|
||
| <table > | ||
|
|
@@ -962,6 +962,10 @@ <h1> | |
| <td>234</td> | ||
| <td><a href="examples/RapidEnum.html">RapidEnum</a></td> | ||
| </tr> | ||
| <tr> | ||
| <td>235</td> | ||
| <td><a href="examples/Csvcsharp.html">Csvcsharp</a></td> | ||
| </tr> | ||
|
Comment on lines
+965
to
+968
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Naming inconsistency: "Csvcsharp" vs "CsvCsharp". This uses "Csvcsharp" but v2/RSCGExamplesData/GeneratorDataRec.json uses "CsvCsharp" (line 1420). Ensure consistent casing across all files to prevent broken references. 🤖 Prompt for AI Agents |
||
| </table> | ||
|
|
||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,22 @@ | ||||||
| { | ||||||
| "generator":{ | ||||||
| "name":"Csvcsharp", | ||||||
| "nuget":[ | ||||||
| "https://www.nuget.org/packages/Csvcsharp/" | ||||||
|
||||||
| "https://www.nuget.org/packages/Csvcsharp/" | |
| "https://www.nuget.org/packages/CsvCSharp/" |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| Fast CSV Serializer for .NET and Unity. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Naming inconsistency: "CsvCsharp" vs "Csvcsharp".
The ID here is "CsvCsharp", but other files in this PR use "Csvcsharp" (e.g., v2/book/list.html line 967, v2/rscg_examples_site/static/exports/RSCG.json line 1878). This inconsistency may cause lookup failures or broken links.
Apply consistent casing throughout. If the correct name is "CsvCsharp", update the other files accordingly.
🤖 Prompt for AI Agents