protected override IStoryCommand CloneCommand()
 {
     WriteAllLinesCommand cmd = new WriteAllLinesCommand();
     cmd.m_File = m_File.Clone();
     cmd.m_Val = m_Val.Clone();
     return cmd;
 }
        public override IStoryCommand Clone()
        {
            WriteAllLinesCommand cmd = new WriteAllLinesCommand();

            cmd.m_File = m_File.Clone();
            cmd.m_Val  = m_Val.Clone();
            return(cmd);
        }