private Volt ConvertVolt(Volt v, int i)
 {
     return(new Volt(v.GetVolts() / i));
 }
Exemple #2
0
 private Volt ConvertVolt(Volt volt, int v)
 {
     return(new Volt(volt.GetVolts() / v));
 }