blob: c5272253101d923cc70636c1adf16bd9b34e2424 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
using System.Linq;
namespace TimelineApp.Helpers
{
public static class LanguageHelper
{
public static bool AreSame(this bool firstBool, params bool[] otherBools)
{
return otherBools.All(b => b == firstBool);
}
}
}
|