From f8fc68e08f73482b471870cc7c69bec6331379f0 Mon Sep 17 00:00:00 2001 From: Drew Tingen Date: Mon, 9 Sep 2019 15:17:32 -0400 Subject: [PATCH] chore: remarks explaining method name limitations --- ICD.Common.Utils/MathUtils.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/ICD.Common.Utils/MathUtils.cs b/ICD.Common.Utils/MathUtils.cs index e40f116..e81584a 100644 --- a/ICD.Common.Utils/MathUtils.cs +++ b/ICD.Common.Utils/MathUtils.cs @@ -216,6 +216,7 @@ namespace ICD.Common.Utils /// /// /// + /// method name can't be "Mod", due to S+ compatability issues public static int Modulus(int number, int mod) { int remainder = number % mod;