# C# 假設資料有一萬筆,以每一千筆批次取資料的寫法 ###### tags: `C#` ``` var someList = someList.ToArray(); for (int i = 0; i < someList.Length; i += 1000) { var curGroup = someList.Skip(i).Take(1000); } ```
×
Sign in
Email
Password
Forgot password
or
By clicking below, you agree to our
terms of service
.
Sign in via Facebook
Sign in via Twitter
Sign in via GitHub
Sign in via Dropbox
Sign in with Wallet
Wallet (
)
Connect another wallet
New to HackMD?
Sign up