Exemplo n.º 1
0
        public object Clone()
        {
            IndexArray <T> clone = new IndexArray <T>((T[])array.Clone());

            clone.baseIndex = baseIndex;
            return(clone);
        }
Exemplo n.º 2
0
 public CommandContext(Command interpretedcommand, CommandSearchResult commandSearch, string argSection, IndexArray <string> args)
 {
     InterpretedCommand = interpretedcommand;
     CommandSearch      = commandSearch;
     ArgumentSection    = argSection;
     Arguments          = args;
 }