CodeGenerator.cs 373 B

1234567891011121314151617
  1. #if NETSTANDARD2_0 || NETSTANDARD2_1 || NETCOREAPP
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace FastReport.Code.CodeDom.Compiler
  6. {
  7. public class CodeGenerator
  8. {
  9. public static bool IsValidLanguageIndependentIdentifier(string value)
  10. {
  11. //TODO o_0 what????
  12. return true;
  13. }
  14. }
  15. }
  16. #endif