Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public T FindAccount(int id)
- {
- if (accounts == null || accounts.Length == 0) throw new Exception("Не создано ни одного аккаунта");
- for (int i = 0; i < accounts.Length; i++)
- {
- if (accounts[i].ID == id)
- return accounts[i];
- }
- return null;
- }
RAW Paste Data