出处 :https://www.cnblogs.com/edisonchou/category/821397.html
===============================================================
自测试使用的测试代码,供参考:
LogAN.Lib类库:
MyMath相关类
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LogAN.Lib { public interface IMyMath { void Test1(string s); int Add(int x, int y); } public class MyMath : IMyMath { public void Test1(string s) { System.Diagnostics.Debug.WriteLine($"==============={s}"); //throw new Exception(); } public int Add(int a, int b) { return a + b; } } }