XmdsDllInit.cs 438 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace XmdsCommonSkill.Plugin
  6. {
  7. /// <summary>
  8. /// FileName: XmdsDllInit.cs
  9. /// Author: Alex.Yu
  10. /// Corporation:...
  11. /// Description: 为了保证DLL能够被顺利加载进程序集.
  12. /// DateTime: 2015/6/5 11:56:11
  13. /// </summary>
  14. public static class XmdsDllInit
  15. {
  16. public static void Init() { }
  17. }
  18. }