Можете ли вы помочь упростить/исправить следующий код
Я новичок в C#,не могли бы вы помочь упростить следующий код:
public class AccountInfo { public int AccountId { get; set; } public string AccountName { get; set; } public bool AccountActive { get; set; } } private static bool IsAccountActive(Guid accountId) { if(accountId == null) { throw new Exception("Account id is null."); } else { if(AccountIdExists(accountId) == true) { AccountInfo acctInfo = RetrieveAccountInformation(accountId); if(acctInfo.AccountActive == true) { return acctInfo.AccountActive } else { return acctInfo.AccountActive } } else { throw new Exception("Account with account id was not found."); } } } private static bool AccountIdExists(Guid accountId) { }
Что я уже пробовал:
Можете ли вы помочь упростить/исправить следующий код и объяснить, в чем заключается проблема в нем?Спасибо!