Exemplo n.º 1
0
 public static GraphiteLine[] CloneMany(GraphiteLine[] line)
 {
     return(line.Select(p => GraphiteLine.Clone(p)).ToArray());
 }
Exemplo n.º 2
0
 public bool Equals(GraphiteLine line)
 {
     return(line._name == this._name &&
            line._quantity == this._quantity &&
            line._epoc == this._epoc);
 }
Exemplo n.º 3
0
 public static GraphiteLine Clone(GraphiteLine line)
 {
     return(new GraphiteLine(line._name, line._quantity, line._epoc));
 }