BattleInfoPlugin.Models.ShipDataExtensions.Count C# (CSharp) Method

Count() public static method

public static Count ( this data, Type2 type2 ) : int
data this
type2 Type2
return int
        public static int Count(this ShipData data, Type2 type2)
        {
            return data.Slots.Count(x => x.Type2 == type2);
        }
ShipDataExtensions