Program.cs 264 B

1234567891011121314
  1. using System;
  2. using Masuit.Tools.Core.NoSQL;
  3. namespace NetCoreTest
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. RedisHelper helper = new RedisHelper();
  10. Console.WriteLine("Hello World!");
  11. }
  12. }
  13. }