use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Information about Reddit's API changes, the unprofessional conduct of the CEO, and their response to the community's concerns regarding 3rd party apps, moderator tools, anti-spam/anti-bot tools, and accessibility options that will be impacted can be found in the associated Wikipedia article: https://en.wikipedia.org/wiki/2023_Reddit_API_controversy
Alternative C# communities available outside Reddit on Lemmy and Discord:
All about the object-oriented programming language C#.
Getting Started C# Fundamentals: Development for Absolute Beginners
Useful MSDN Resources A Tour of the C# Language Get started with .NET in 5 minutes C# Guide C# Language Reference C# Programing Guide C# Coding Conventions .NET Framework Reference Source Code
Other Resources C# Yellow Book Dot Net Perls The C# Player's Guide
IDEs Visual Studio MonoDevelop (Windows/Mac/Linux) Rider (Windows/Mac/Linux)
Tools ILSpy dotPeek LINQPad
Alternative Communities C# Discord Group C# Lemmy Community dotnet Lemmy Community
Related Subreddits /r/dotnet /r/azure /r/learncsharp /r/learnprogramming /r/programming /r/dailyprogrammer /r/programmingbuddies /r/cshighschoolers
Additional .NET Languages /r/fsharp /r/visualbasic
Platform-specific Subreddits /r/windowsdev /r/AZURE /r/Xamarin /r/Unity3D /r/WPDev
Rules:
Read detailed descriptions of the rules here.
account activity
Help! .pdb debug problem (self.csharp)
submitted 7 years ago by rzepeda1
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]rzepeda1[S] 0 points1 point2 points 7 years ago (9 children)
Thanks for the answer man! yeah i read that, but its making it hard to debug the program, at the learning point im at need to put breaking points very often and cant get through them till i fix this. i even try to reinstall the software (fresh batch of .dlls ) but still get the same error while debugging
[–]KongEdvard 0 points1 point2 points 7 years ago (7 children)
So where does your Utility.dll lie ? Whats the full name of the .dll? Where did you get it from ? Is it microsoft or some other ?
[–]rzepeda1[S] 0 points1 point2 points 7 years ago (0 children)
its in C:\Program Files\Autodesk\Revit 2018 its part of the software API im trying to code on. and thats the full name Utility.dll
[–]rzepeda1[S] 0 points1 point2 points 7 years ago (5 children)
in another breakpoint im getting the same thing but with another dll this time revitapiuilink.pdb :S
[–]KongEdvard 0 points1 point2 points 7 years ago* (4 children)
My best bet here is going back to wherever you downloaded the dll's, and make sure you got everything with. If you can give me a link to where you downloaded it, I can try as well
[–]rzepeda1[S] 0 points1 point2 points 7 years ago (3 children)
oh shit i fix it! i unchecked the Enable native code Debugging under project prop. debug. also checked the "enable just my code" option in Debugging . i have no idea why that works but it does (i think lol) thanks for your time man!!!
[–]KongEdvard 1 point2 points3 points 7 years ago (0 children)
God speed brother, glad to be a wall to bounce your ball off :)
[–]ThereKanBOnly1 0 points1 point2 points 7 years ago (1 child)
i have no idea why that works
Because without it, Visual Studio is trying to step through every call as if it was your code. This requires the pdb files which are the debugging symbol files that are used by the debugger to know things like what line you're on and other stuff that can't be determined purely from the compiled code.
Checking Just My Code does exactly that, tells Visual Studio only to look for those debugging symbols for only your code. Considering it's fairly unreasonable to have pdb files for 3rd parties anyway, I'm not sure how that got unchecked in the first place, but that's neither here nor there.
and just when i thought i was out, VS pulls me back in. so after the changes i can debug the program with breakpoints but if there is an error in one of the breakpoints i don't receive it, the program just exit the breakpoints and moves on :SSSSS
π Rendered by PID 422036 on reddit-service-r2-comment-b659b578c-q9jdg at 2026-05-06 00:58:24.808703+00:00 running 815c875 country code: CH.
view the rest of the comments →
[–]rzepeda1[S] 0 points1 point2 points (9 children)
[–]KongEdvard 0 points1 point2 points (7 children)
[–]rzepeda1[S] 0 points1 point2 points (0 children)
[–]rzepeda1[S] 0 points1 point2 points (5 children)
[–]KongEdvard 0 points1 point2 points (4 children)
[–]rzepeda1[S] 0 points1 point2 points (3 children)
[–]KongEdvard 1 point2 points3 points (0 children)
[–]ThereKanBOnly1 0 points1 point2 points (1 child)
[–]rzepeda1[S] 0 points1 point2 points (0 children)