/// <summary> /// Returns whether to include stack array or not /// Also outs the stack array if needed to include /// </summary> /// <param name="stack"></param> /// <param name="includeStackKey"></param> /// <returns></returns> private bool IncludeThreadStackValues(log4net.Util.ThreadContextStack stack, out string[] stackArray) { if (stack != null && stack.Count > 0) { stackArray = new string[stack.Count]; for (int n = stack.Count - 1; n >= 0; n--) { stackArray[n] = stack.Pop(); } foreach (string stackValue in stackArray) { stack.Push(stackValue); } return true; } else { stackArray = null; return false; } }