Hi, This looks like a problem we've had before with breakpoints in generic classes.
Can you file a bug report with a test case so we can look at getting it fixed? Thanks, Rolf On Mon, Feb 27, 2012 at 10:13 PM, AnthonyLambert <[email protected]>wrote: > > I have class which overrides RowSelect edfrom a couple of levels deep from > UITableViewSource. > > So it's: > > class aSource: UITableViewSource > { > public override void RowSelected (UITableView tbl, NSIndexPath ind ) > { > Console.Write("aaa"); // breakpoint a > } > } > > class bSource<T> : aSource where T : someT, new () > { > public override void RowSelected (UITableView tbl, NSIndexPath ind ) > { > Console.Write("bbb"); // breakpoint b > base.RowSelected(tbl, ind); > } > } > > If I put the two break points in the debugger the bSource.RowSelect is > actioned when my table cell is selected and it prints "bbb" but the break > point doesn't work, the "aaa" prints and the breakpoint works. > > Strange? Any ideas? > > > -- > View this message in context: > http://monotouch.2284126.n4.nabble.com/RowSelected-breakpoints-doesn-t-work-tp4426083p4426083.html > Sent from the MonoTouch mailing list archive at Nabble.com. > _______________________________________________ > MonoTouch mailing list > [email protected] > http://lists.ximian.com/mailman/listinfo/monotouch >
_______________________________________________ MonoTouch mailing list [email protected] http://lists.ximian.com/mailman/listinfo/monotouch
