Silverlight debugging, no list item

When I debug my Silverlight application and use the list for internal use, I cannot hover over it and see the elements inside the list. I just see the RAW view of the list.

If I want to see objects, I have to write my own code, which is tedious. Is this something normal for Silverlight?

I have REALLY the correct list view when debugging in regular console / WPF / ... applications.

Example: Silverlight ( e.Result- this Dictionary<DateTime, decimal>): silverlight(link: click )

See how the first example has no list view?

And in this, not Silverlight: non silverlight(link: click )

64- Windows 7 Visual Studio 2010 Silverlight 4 SDK RC2.

+3
3

.

  • DLL linq (, System.Core)

  • :

    System.Linq;

  • :

    dic.Take(21)

  • "". , .

[ rickpastoor connect.microsoft.com Bug 557741]

+1

Silverlight Dictionary < > class [DebuggerTypeProxy], . . , connect.microsoft.com, , , RTM.

+1

alt text

WCF Silverlight, . . , - ?

"" ? , DateTime , .

:

public Dictionary<DateTime, decimal> GetDataUsingDataContract()
{
    Dictionary<DateTime, decimal> x = new Dictionary<DateTime, decimal>();
    x[DateTime.Now] = 2;
    x[DateTime.Now.AddDays(2)] = 3;
    return x;
}
0

Source: https://habr.com/ru/post/1742280/


All Articles