Пример #1
0
        public static uint Create <SYMBOL_ENUM>(params SYMBOL_ENUM[] ss) where SYMBOL_ENUM : struct
        {
            uint chunk = 0;

            for (int i = 0; i < ss.Length; ++i)
            {
                SymbolChunkTraits.Add(ref chunk, ss[i]);
            }
            return(chunk);
        }