示例#1
0
 public new ScriptElement Clone()
 {
     var copy = new ScriptElement()
     {
         Source = this.Source,
         Text = this.Text,
         Type = this.Type
     };
     return copy;
 }
示例#2
0
        public new ScriptElement Clone()
        {
            var copy = new ScriptElement()
            {
                Source = this.Source,
                Text   = this.Text,
                Type   = this.Type
            };

            return(copy);
        }