drinkMe/drinkMe/Client/Helpers/VUtilities.cs

14 lines
255 B
C#
Raw Normal View History

2021-04-26 15:35:44 +02:00
namespace drinkMe.Client.Helpers
{
public static class VUtilities
{
public static T IfTrueThen<T>(bool conditionIsTrue, T ifTrue, T ifFalse = default)
{
if (conditionIsTrue)
return ifTrue;
else
return ifFalse;
}
}
}