예제 #1
0
파일: Volume.cs 프로젝트: Jonsey/Dymensions
 public bool Equals(Volume other)
 {
     return other.Value.Equals(Value) && Equals(other.Unit, Unit);
 }
예제 #2
0
파일: Recipe.cs 프로젝트: Jonsey/BrewRoom
 public virtual void SetBrewLength(Volume volume)
 {
     brewLength = volume;
 }