79352400

Date: 2025-01-13 13:57:41
Score: 0.5
Natty:
Report link

Another possible option avoids LINQ:

string[] parts = Array.ConvertAll(line.Split(';'), p => p.Trim());
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Dmitry Shashurov