Exemplo n.º 1
0
 internal FieldOperationList(FieldStatOperations operations)
 {
     _operations = operations;
     if (operations == null)
     {
         throw new NullReferenceException("Internal reference is null.");
     }
 }
Exemplo n.º 2
0
 public FieldOperation(FieldStatOperations operations, int index)
 {
     _operations = operations;
     _index      = index;
     if (operations == null)
     {
         throw new NullReferenceException("Internal reference is null");
     }
     if (index < 0 || index >= operations.Count)
     {
         throw new IndexOutOfRangeException("Invalid field operation index.");
     }
 }
Exemplo n.º 3
0
 public FieldOperationList()
 {
     _operations = new FieldStatOperations();
 }