コード例 #1
0
		public static bool Equals(NullableChar x, NullableChar 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;
		}
コード例 #2
0
		public bool Equals(NullableChar x)
		{
			return Equals(this, x);
		}