The process was terminated due to an internal error in the .NET Runtime at IP 00007FFB31E21DCB (00007FFB31C90000) with exit code c0000005.

Salah 1 Reputation point
2021-02-16T08:34:08.763+00:00

Hi,

I am getting this error almost daily.

Application: w3wp.exe
CoreCLR Version: 4.700.20.56602
.NET Core Version: 3.1.11
Description: The process was terminated due to an internal error in the .NET Runtime at IP 00007FFB31E21DCB (00007FFB31C90000) with exit code c0000005.

And I think this error is causing the following error:
Status(StatusCode=Unavailable, Detail="DNS resolution failed")

Please can someone help me with whether this is an issue with .Net core 3.1 or maybe dotnet runtime?

.NET Runtime
.NET Runtime
.NET: Microsoft Technologies based on the .NET software framework.Runtime: An environment required to run apps that aren't compiled to machine language.
1,119 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Jerry Cai-MSFT 986 Reputation points
    2021-02-17T09:53:10.27+00:00

    Hi,Salah

    Exception code c0000005 always caused by the access denied. That means your program is accessing a memory address without the permission.

    For example,

    1. you read an array of length N but you read N+1
    2. try to access memory that has already been deallocated.

    You should debug to check the exe.

    Or you can follow this link then check whether it can work:

    Fix problems with apps from Microsoft Store

    Best Regards,
    Jerry Cai


    If the answer is helpful, please click "Accept Answer" and upvote it.
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    1 person found this answer helpful.
    0 comments No comments