chore: remarks explaining method name limitations

This commit is contained in:
Drew Tingen
2019-09-09 15:17:32 -04:00
parent fc4ae67e40
commit f8fc68e08f

View File

@@ -216,6 +216,7 @@ namespace ICD.Common.Utils
/// <param name="number"></param>
/// <param name="mod"></param>
/// <returns></returns>
/// <remarks>method name can't be "Mod", due to S+ compatability issues</remarks>
public static int Modulus(int number, int mod)
{
int remainder = number % mod;