suresh
suresh

Reputation: 113

Attempted to read or write protected memory. This is often an indication that other memory is corrupt. in windows phone 8

In windows phone 8 i created one chat application, in that if continually received more message at a time, an exception is thrown at App.xaml.cs file .

how to solve this.or any way to find when and where the issue is happened.

System.AccessViolationException was unhandled

Message: An unhandled exception of type 'System.AccessViolationException' occurred in System.Windows.ni.dll

Additional information: Attempted to read or write protected memory. This is often an indication that other memory is corrupt.

enter image description here

Upvotes: 3

Views: 1490

Answers (1)

Attila
Attila

Reputation: 46

This error message is displayed when the memory is corrupted.

It may be your app that corrupts the memory, or it is also possible the corruption is caused by an issue in system.

Are you able to create a minimal test case and post here?

Upvotes: 0

Related Questions