/// <summary> /// 引用值数据类 /// </summary> public class RefValue<T> { public T Value; public RefValue(T value) { Value = value; } }