本文介绍了SSME(Windows phone8)throw" System.OutOfMemoryException"例外的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的应用程序崩溃了,因为Microsoft.Web.Media.SmoothStreaming库在对象ba中引发了OutOfMemoryException,在b方法中(混淆... yay ...)。

My app is crashing because the Microsoft.Web.Media.SmoothStreaming library is raising an OutOfMemoryException in the object ba, in the b method (obfuscation ... yay ...).

异常详情:

   抛出了'System.OutOfMemoryException'类型的异常。===  在System.IO.BinaryReader.ReadBytes(Int32计数)

  在Microsoft.Web.Media.SmoothStreaming.ba.b(TrackInfo A_0,StreamInfo A_1,az A_2,MediaStreamSample A_3)

  在Microsoft.Web.Media.SmoothStreaming.z.cm(MediaStreamType A_0)

  在Microsoft.Web.Media.SmoothStreaming.z.bg()

   at System.Threading.ThreadHelper.ThreadStart_Context(Object state)

   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext,ContextCallback callback,Object state,Boolean preserveSyncCtx)

   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext,ContextCallback callback,Object state,Boolean preserveSyncCtx)

  在System.Threading.ExecutionContext.Run(ExecutionContext executionContext,ContextCallback回调,对象状态)

  在System.Threading.ThreadHelper.ThreadStart()

   Exception of type 'System.OutOfMemoryException' was thrown.===   at System.IO.BinaryReader.ReadBytes(Int32 count)
   at Microsoft.Web.Media.SmoothStreaming.ba.b(TrackInfo A_0, StreamInfo A_1, az A_2, MediaStreamSample A_3)
   at Microsoft.Web.Media.SmoothStreaming.z.cm(MediaStreamType A_0)
   at Microsoft.Web.Media.SmoothStreaming.z.bg()
   at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
   at System.Threading.ThreadHelper.ThreadStart()

推荐答案

我喜欢这个工具:
http://msdn.microsoft.com/en-us/library/windows/apps/xaml/dn629255.aspx


这篇关于SSME(Windows phone8)throw" System.OutOfMemoryException"例外的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-16 03:10