摘要:
最近编程时遇到一个相等运算符重载的问题,想来该是C#的一个陷阱。我定义的Coordinate类原先是这样重载相等运算符的:publice class Coordinates{.... public override bool Equals(object obj) { if (!(obj is Coordinates)) return false; Coordinates other = (Coor... 阅读全文
摘要:
After working in telecom industry for 13 years, now I turn from IMS high-level support to do some research on mobile LCS (LoCation Service) area instead, and have to start programming using VS2005 C#.... 阅读全文