标签: linqpad
是否有一种简单的方法可以根据某些参数终止运行linqpad查询?
例如
int x = someValueThatCouldBeNull; if(x == null) { //terminate the query } else { x.Dump(); }