Don’t be ridiculous, that would never pass QA.
But this one will. Joy for years to come:
public string GetDayOfWeek(DateTime date) {
return ((date - new DateTime(1970, 1, 1)).Milliseconds / 86400000) % 7 switch {
0 => "Thursday",
1 => "Friday",
2 => "Saturday",
3 => "Sunday",
4 => "Monday"
};
}




You can approximate the length of any path (including circles) by adding the lengths of many small line segments that follow that path. Making a line segment bigger by some factor, will increase it’s length by the same factor. Therefore, scaling the circle by any factor, increases it’s circumference by the same factor. Scaling a circle is just scaling it’s radius so: Scaling the radius by some factor, changes the circumference by the same factor. That means the ratio between radius and circumference is always constant.
I hope this is decipherable :D