public void Method(out int i) { } //Error public void Method(ref int i) { }//Error We Cannot Overload Method with only difference as out and ref. It will throw Compiler Error.(Member with Same Signature Exist).
public void Method(out int i) { } //Error public void Method(ref int i) { }//Error We Cannot Overload Method with only difference as out and ref. It will throw Compiler Error.(Member with Same Signature Exist).