79592248

Date: 2025-04-25 09:49:00
Score: 0.5
Natty:
Report link

For more modern C# (from version 6), you can simply use string interpolation.

Console.WriteLine($"{5488461193L:X}");

This would also work for assigning variables, etc:

var octalLong = $"{5488461193L:X}";
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: nobody