public interface IMyServer
{
[OperationContract]
[DynamicResponseType]
[WebGet(UriTemplate = "info")]
string ServerInfo();
}
Run Code Online (Sandbox Code Playgroud)
如何编写NUnit测试来证明C#接口方法是否[DynamicResponseType]设置了属性?