Just curious, Is there or has anyone ever come across a heap / buffer overflow exception in C#?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can cause a buffer overflow in C# in unsafe code. For example:
The above will print “99” because it overflowed the buffer.
Absent unsafe code, I do not know of any way to cause a buffer overrun that doesn’t trigger an exception.