system(file,args);
Наследование: AbstractStoryCommand
Пример #1
0
        protected override IStoryCommand CloneCommand()
        {
            SystemCommand cmd = new SystemCommand();

            cmd.m_FileName  = m_FileName.Clone();
            cmd.m_Arguments = m_Arguments.Clone();
            return(cmd);
        }
 public override IStoryCommand Clone()
 {
     SystemCommand cmd = new SystemCommand();
     cmd.m_FileName = m_FileName.Clone();
     cmd.m_Arguments = m_Arguments.Clone();
     return cmd;
 }