ControlValue() public method

public ControlValue ( ) : int
return int
Ejemplo n.º 1
0
 public void Control(Profile other)
 {
     if (this.ControlValue() != other.ControlValue())
     {
         object[] objArray1 = new object[] { "Control numbers do not match (", this.name, " ", other.name, ") ", this.ControlValue(), " != ", other.ControlValue() };
         throw new Exception(string.Concat(objArray1));
     }
 }
Ejemplo n.º 2
0
		public void Control (Profile other) {
			if (ControlValue() != other.ControlValue()) {
				throw new System.Exception("Control numbers do not match ("+name + " " + other.name + ") " + this.ControlValue() + " != " + other.ControlValue());
			}
		}