/// <summary> /// Creates a shallow copy of a range of elements in the source list. /// </summary> public static SystemGenerics.List <T> GetRange(SystemGenerics.List <T> list, int index, int count) { (list as Mock)?.CheckDataRace(false); return(list.GetRange(index, count)); }