Ejemplo n.º 1
0
		public bool Equals(NullableSByte x)
		{
			return Equals(this, x);
		}
Ejemplo n.º 2
0
		public static bool Equals(NullableSByte x, NullableSByte y)
		{
			if (x.HasValue != y.HasValue) //one is null
				return false;
			else if (x.HasValue) //therefor y also HasValue
				return x.Value == y.Value;
			else //both are null
				return true;
		}