Wondering what the difference is between the following: Case 1: Base Class public void DoIt(); Case 1: Inherited class public new void DoIt(); Case 2: Base Class public virtual...
  • May 22, 2022
  • 0 Comments
Is it allowed to delete this; if the delete-statement is the last statement that will be executed on that instance of the class? Of course I’m sure that the...
  • May 22, 2022
  • 0 Comments
I am designing a small C# application and there is a web browser in it. I currently have all of my defaults on my computer say google chrome is...
  • May 14, 2022
  • 0 Comments
I’ve been using C++ for a short while, and I’ve been wondering about the new keyword. Simply, should I be using it, or not? With the new keyword… MyClass*...
  • May 13, 2022
  • 0 Comments
Javascript 1.9.3 / ECMAScript 5 introduces Object.create, which Douglas Crockford amongst others has been advocating for a long time. How do I replace new in the code below with...
  • May 9, 2022
  • 0 Comments