摘要:
public class LoadBalance { /// <summary> /// 锁对象 /// </summary> private static readonly object locker = new object(); /// <summary> /// 服务器权重列表 /// </summary> private static List<int> weightList= new List<int>(); /// <summary> /// 当前索引 /// </summary> p 阅读全文