From 1d53af4b4610e76ba10b21861c734a87b52d66e8 Mon Sep 17 00:00:00 2001 From: ronnie Date: Mon, 13 Apr 2026 23:22:55 -0400 Subject: [PATCH] added an comment --- Math/Math.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Math/Math.cs b/Math/Math.cs index b511030..bbbfef2 100644 --- a/Math/Math.cs +++ b/Math/Math.cs @@ -4,6 +4,13 @@ namespace SJK.Math; public static class SJKMath { + /// + /// Gets the max number in a array of values. + /// + /// + /// + /// + /// public static T Max(params T[] values) where T : INumber { if (values.Length == 0)