Exemple #1
0
 public bool Contains(BarCodePrint value)
 {
     // If value is not of type Int16, this will return false.
     return(List.Contains(value));
 }
Exemple #2
0
 public void Remove(BarCodePrint value)
 {
     List.Remove(value);
 }
Exemple #3
0
 public void Insert(int index, BarCodePrint value)
 {
     List.Insert(index, value);
 }
Exemple #4
0
 public int IndexOf(BarCodePrint value)
 {
     return(List.IndexOf(value));
 }
Exemple #5
0
 public int Add(BarCodePrint value)
 {
     return(List.Add(value));
 }
Exemple #6
0
 public void AddBarCode(BarCodePrint barcodeprint)
 {
     barcodeprintcollection.Add(barcodeprint);
 }