Ejemplo n.º 1
0
        public override bool Equals(object obj)
        {
            StringBudgetKey stringBudgetKey = obj as StringBudgetKey;

            return(!(stringBudgetKey == null) && (stringBudgetKey.BudgetType == base.BudgetType && stringBudgetKey.Key == this.Key) && stringBudgetKey.IsServiceAccountBudget == base.IsServiceAccountBudget);
        }
Ejemplo n.º 2
0
        // Token: 0x0600746C RID: 29804 RVA: 0x0017FEA8 File Offset: 0x0017E0A8
        public static IStandardBudget AcquireFallback(string identifier, BudgetType budgetType)
        {
            StringBudgetKey budgetKey = new StringBudgetKey(identifier, false, budgetType);

            return(StandardBudget.Acquire(budgetKey));
        }