I need to force the use of \"using\" to dispose a new instance of a class.
public class MyClass : IDisposable { ... } using(MyClass obj = new MyClass())
I wonder if FXCop could enforce that rule?