mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 10:46:33 +02:00
15 lines
389 B
C#
15 lines
389 B
C#
|
|
// Copyright (c) Microsoft Corporation
|
|||
|
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
|||
|
|
// See the LICENSE file in the project root for more information.
|
|||
|
|
|
|||
|
|
namespace Peek.Common.Helpers
|
|||
|
|
{
|
|||
|
|
public static class MathHelper
|
|||
|
|
{
|
|||
|
|
public static int Modulo(int a, int b)
|
|||
|
|
{
|
|||
|
|
return a < 0 ? ((a % b) + b) % b : a % b;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|