Base.Core.cs 405 B

1234567891011121314151617
  1. using System.Collections.Generic;
  2. namespace FastReport
  3. {
  4. partial class Base
  5. {
  6. /// <summary>
  7. /// Does nothing
  8. /// </summary>
  9. /// <param name="macroValues"></param>
  10. /// <param name="text"></param>
  11. private string ExtractDefaultMacrosInternal(Dictionary<string, object> macroValues, string text)
  12. {
  13. return text;
  14. }
  15. }
  16. }