AutoResetEvent 方法名称设计缺陷
这个类和方法,让人乍一读是读不明白的。不能通过方法名称明白其含义。所以它的方法名称设计是欠考虑。
应该类似于这样:
public static class MyAutoResetEvent { public static AutoResetEvent StartBusy() { return new AutoResetEvent(false); } public static AutoResetEvent StartCompleted() { return new AutoResetEvent(true); } public static bool SetCompleted(this AutoResetEvent EventObject) { return EventObject.Set(); } public bool ResetBusy(this AutoResetEvent EventObject) { return EventObject.Reset(); } }
作者:NewSea 出处:http://newsea.cnblogs.com/
QQ,MSN:iamnewsea@hotmail.com 如无特别标记说明,均为NewSea原创,版权私有,翻载必纠。欢迎交流,转载,但要在页面明显位置给出原文连接。谢谢。 |