23
votes
What do ‘statically linked’ and ‘dynamically linked’ mean?
I think a good answen to this question ought to explain what linking is.
When you compile some C code (for instance), it is translated to machine language. Just a sequence of bytes …
1
vote
Does the C# switch statment need a break;
You use a break in C#, just like in C++. However, if you omit the break you must replace it with another other control transfer (e.g. goto case 1;).
See …
3
votes
How to get *internet* IP ?
Not 100% accurate (some ISPs don't give you public IP addresses), but you can check if the IP address is on one of the ranges reserved for private addresses. See …
1
vote
Is there a reason I should not start with C#
Considering all the answers so far, I thought I'd look at all four languages mentioned.
While I've done a lot of development in PHP, and sadly continue to do so, I think PHP was never a gre …
1
vote
ensure two char arrays are not the same
Can't you get the database to do it? Make the grid column UNIQUE. Then, if you need to detect that you've generated a duplicate grid, the method for doing this might involve checking the number of …
1
vote
Why is this WebRequest code slow?
Probably Firefox issues multiple requests at once whereas your code does them one by one. Perhaps adding threads will speed up your program.
…
0
votes
Is “while (true)” usually used for a permanent thread?
Ideally you want the thread to be "runnable" when it has work to do, and "sleeping" when there is nothing to do.
This is best done with objects like mutual exclusions (mutexes), semaphores …
2
votes
How to execute code in c# service one time per day at the same hour ?
Other answers are good. I just thought I'd point out that
compare the DateTime.Now with 3am
is a bad solution, even if you sleep for some time between e …
4
votes
How can I display my results in C#?
Is this what you want?
Console.WriteLine(CountAllNumbersAndChar(str));
…
1
vote
which is a better practice at exception handling?
Exception handling is most useful when you need to provide an easy way out of a difficult situation - it can greatly simplify the code and decrease the potential for corner-case bugs.
It of …
-1
votes
Developing Games - How are things that take more than one game loop performed?
Consider how operating systems allow multiple programs to run on a single processor:
Program 1 is running
Program 1 is interrupted
Program 1's state (contents of CPU …
7
votes
Why use an Array of more than two dimensions?
I'm not going to touch your personAttributes example because I don't think a 2D array is a good idea, let alone 3D (personally I would use an array of structs).
However, multidimensional ar …
0
votes
How do I split a big file into smaller ones (more FTP friendly), and merge them back later?
You can make a split and join program with a handful of lines each. Just read some fixed amount (512KB, 4MB, whatever) from a file and write it out to a new file. Repeat t …
1
vote
Repeat Forever a If Function
You mean this?
while(true) {
if( ...) {
}
}
PS: this is one of my favourite preprocessor hacks. Doesn't work in C# though, only C/C++.
#def …
6
votes
