Integrity is what you do when no one is watching
C
cmichaelgraham
@cmichaelgraham
Posts
-
Programming question -
symbols not loadedbreakpoint not hit --> symbols not loaded, but just for one line of code... VS2010, C#, Silverlight code behind (xxx.xaml.cs) here's the code:
List<EntityRec> EntityRecList = new List<EntityRec>
(
new EntityRec[]
{
new EntityRec()
{
Name = "Well List 1",
Entity = "Wellbore",
Count = 17,
Description = "This is a random list of wells that contains\r\nseveral unique formations and depths.",
IsPublic = false
},
...
);But if I create an array of EntityRec with a fixed size and explicitly assign the new EntityRec items, all break points are hit just fine... Weird... Cost me about 3 hours to figure that one out :)