标签: c# code-contracts
Contract.Requires(!string.IsNullOrWhiteSpace(type), "Type is required");
当我在我的方法中使用上述语句时,以及条件失败时。前提条件失败代码和用户消息都会连接在一起。输出就像
Precondtion failure!string.IsNullOrWhiteSpace(type)Type is required
如何摆脱正在打印的代码?我只想要显示用户信息。