Hi Anthony, This is a known bug in MonoDevelop 2.8.6 and has been fixed in the upcoming 2.8.8.
For more information, see https://bugzilla.xamarin.com/show_bug.cgi?id=3110for more details. Hope that helps! Jeff On Mon, Feb 27, 2012 at 4: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
