BudgetAnalyser.Engine.BudgetAnalyserLog4NetLogger.Format C# (CSharp) 메소드

Format() 공개 메소드

public Format ( string formatTemplate ) : string
formatTemplate string
리턴 string
        public string Format(string formatTemplate, params object[] parameters)
        {
            if (this.disposed)
            {
                throw new ObjectDisposedException("BudgetAnalyserLog4NetLogger");
            }

            return string.Format(CultureInfo.CurrentCulture, formatTemplate, parameters);
        }