BattleInfoPlugin.Models.CellTypeConverter.Split C# (CSharp) Метод

Split() публичный статический Метод

public static Split ( this type ) : IEnumerable
type this
Результат IEnumerable
        public static IEnumerable<CellType> Split(this CellType type)
        {
            return SingleTypes.Where(single => type.HasFlag(single));
        }
CellTypeConverter