Search Results

5
votes

Should constructor variables pass direct to private fields or properties?

Using properties is OK as long as they are not virtual/overridden. Properties are essentially methods, and you should not call virtual methods from within the constructor because the appropriate t …
0
votes

Is there .Net replacement for GetAsyncKeyState?

Depending on your desired use there are a couple of options, including invoking the same method as described above). From a console app: bool exitLoop = false; for(int i=0;i<bigN …
1
vote

Exception safety/handling with .Net HtmlTextWriter?

If you are only concerned about errors that occur during the GenerateHtml() call, and don't like the second approach (which seems fine to me), why not move the closing span tag into a finally block …
5
votes

Null Difference

In the good old days, compilers would happily let you make assignments inside conditionals, leading to unintentional errors: if(a = false) { // I'll never execute } if(b = null) { …
0
votes

Declare a generic type instance dynamically

See the answer from the similar question "Dynamically Create a Generic Type for Template". The …
3
votes

Generic class used as constraint to generic method in C#?

Just follow the T: // ... { //... MyCollection1 collection3 = GetCollectionFromDb<MyCollection1>(Collection1Name); } private static T GetCollec …
3
votes

Why are many of the banking sites implemented in Java rather than .NET?

Its hard to take a single data point and extrapolate from it. As a counterpoint - US bank appears to be running Coldfusion (.cfm - unless I am mistaken in my extensions). This client may …