tagged [symbols]

Undefined Symbols for architecture x86_64: Compiling problems

Undefined Symbols for architecture x86_64: Compiling problems So I am trying to start an assignment, my professor gives us a Main.cpp, Main.h, Scanner.cpp, Scanner.h, and some other utilities. My job ...

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

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...

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

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 ...

#if DEBUG vs. Conditional("DEBUG")

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

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...

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...

#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

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 ...