tagged [symbols]

Getting Symbols from debugged process MainModule

Getting Symbols from debugged process MainModule I started writing a debugger in C#, to debug any process on my operating system. For now, it only can handle breakpoints (HW, SW, and Memory), but now ...

11 Aug at 05:29

Enums in Javascript with ES6

Enums in Javascript with ES6 I'm rebuilding an old Java project in Javascript, and realized that there's no good way to do enums in JS. The best I can come up with is: The `const` keeps `Colors` from ...

#if DEBUG vs if (env.IsDevelopment())

#if DEBUG vs if (env.IsDevelopment()) It seems that [Preprocessor Directives](https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/preprocessor-directives/preprocessor-if) (`#if DEBUG`) ...

12 Feb at 20:57

Do not show file paths of build machine in stack trace

Do not show file paths of build machine in stack trace I am currently developing a C# application which has got it's own logging. When exceptions are thrown, the exception is saved into a list which c...

How do I debug .NET 4.6 framework source code in Visual Studio 2017?

How do I debug .NET 4.6 framework source code in Visual Studio 2017? Here's what I've tried: Made a new Console App (.NET Framework) in Visual Studio 2017. Added the following code: Configured the set...

#if DEBUG vs. Conditional("DEBUG")

#if DEBUG vs. Conditional("DEBUG") Which is better to use, and why, on a large project: or

Prevent loading symbols in VisualStudio

Prevent loading symbols in VisualStudio I am using Visual Studio 2015. I want to prevent symbols loading for all the core dlls like System.Net, System.Web etc..., I just want to load symbols only for ...

Unfamiliar symbol in algorithm: what does ∀ mean?

Unfamiliar symbol in algorithm: what does ∀ mean? I'm reading about an algorithm (it's a path-finding algorithm based on A*), and it contains a mathematical symbol I'm unfamiliar with: ∀ Here is the c...

30 Jan at 13:13

Why can't I find System.Web.pdb on referencesource.microsoft.com?

Why can't I find System.Web.pdb on referencesource.microsoft.com? ``` SYMSRV: http://referencesource.microsoft.com/symbols/System.Web.pdb/E6EBD6B61CEA407591438CC4E48036891/System.Web.pdb not found htt...

In HTML I can make a checkmark with ✓ . Is there a corresponding X-mark?

In HTML I can make a checkmark with ✓ . Is there a corresponding X-mark? Is there a corresponding X mark to ✓ (`✓`)? What is it?

1 Nov at 04:35