Notes![what is notes.io? What is notes.io?](/theme/images/whatisnotesio.png)
![]() ![]() Notes - notes.io |
{
string[] lines = File.ReadAllLines("data.txt");
List<Part> list_part = new List<Part>();
Parallel.ForEach(lines, line =>
{
string[] item = line.Split('t');
list_part.Add(new Part {
group_index = int.Parse(item[0]),
group_name= item[1],
number = int.Parse(item[2]),
part_name = item[3],
part_number = item[4],
image = $"https://bike-parts-honda.com/{item[5]}"
});
});
list_part.Sort((x, y) =>
{
int res = x.group_index.CompareTo(y.group_index);
if (res == 0)
res = x.number.CompareTo(y.number);
return res;
});
StringBuilder html_part = new StringBuilder();
StringBuilder html_anchor = new StringBuilder();
html_part.AppendLine("<table class='tb-part'>");
var groups = list_part.GroupBy(p => new { p.group_index, p.group_name, p.image });
groups.ForEach(g =>
{
html_part.AppendLine($"<thead id='part-{g.Key.group_index}'><tr><th colspan='3'><img src='{g.Key.image}' /></th></tr><tr><th colspan='3'>{g.Key.group_name}</th></tr></thead>");
html_part.AppendLine("<tbody>");
g.ForEach(p =>
{
html_part.AppendLine($"<tr><td>{p.number}</td><td>{p.part_name}</td><td>{p.part_number}</td></tr>");
});
html_part.AppendLine("</tbody>");
html_anchor.AppendLine($"<div><a href='#part-{g.Key.group_index}'><img src='{g.Key.image}' /></a></div>");
});
html_part.AppendLine("</table>");
string res_html = html_part.ToString();
res_html = html_anchor.ToString();
//Console.ReadKey();
}
class Part
{
public int group_index { get; set; }
public string group_name { get; set; }
public int number { get; set; }
public string part_name { get; set; }
public string part_number { get; set; }
public string image { get; set; }
}
![]() |
Notes is a web-based application for online taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000+ notes created and continuing...
With notes.io;
- * You can take a note from anywhere and any device with internet connection.
- * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
- * You can quickly share your contents without website, blog and e-mail.
- * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
- * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.
Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.
Easy: Notes.io doesn’t require installation. Just write and share note!
Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )
Free: Notes.io works for 14 years and has been free since the day it was started.
You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;
Email: [email protected]
Twitter: http://twitter.com/notesio
Instagram: http://instagram.com/notes.io
Facebook: http://facebook.com/notesio
Regards;
Notes.io Team