http://bugzilla.novell.com/show_bug.cgi?id=581804

http://bugzilla.novell.com/show_bug.cgi?id=581804#c3


--- Comment #3 from scott fluto <[email protected]> 2010-02-22 23:17:16 UTC 
---
create a generic class of type T and create the same CopyUnsafe method
signatures :
public virtual void CopyUnsafe(T[] value, params long[] fromIdx){}
public virtual void CopyUnsafe(T[] value, long fromIdx){}

and create a third method as follows:
public virtual void CopyUnsafe(T[] value)
{
   CopyUnsafe(value, 0);
}
this one should generate the ambiguous error when you try compiling it.

scott

-- 
Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
_______________________________________________
mono-bugs maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs

Reply via email to