Search Results

0
votes

Redundancy in C#?

It's only redundant in a small set of circumstances. Consider interface-based programming. IList<int> list = CreateList(numberOfPeople); where …
11
votes

How do I detect a null pointer in C#?

testing against null will never* throw an exception void DoSomething( MyClass value ) { if( value != null ) { value.Method(); } } …
0
votes

Can someone tell me the very basics of how computer programming works?

The computer has a preset number of instructions; thing it already knows how to do. A computer program is simply a list of instructions that the computer will execute sequentially. Early pr …
0
votes

C# How do I run a simple bit of code in a new thread?

I'd recommend looking at Jeff Richter's Power Threading Library and specifically the IAsyncEnumerator. Take a look at the vide …
1
vote

Why does many-to-many data structure require two additional tables?

Just to add to what others say (I wont repeat their comments) In my experience, it's not typically called a help table but a join table. Normally you're dealing with something more complica …
0
votes

String.Format consider locale or not?

This works. IFormatProvider iFormatProvider = new System.Globalization.CultureInfo("es-ES"); string s = value.ToString("#,##0.000", iFormatProvider); string s2 = string.Format(iFo …