Search Results

12
votes
7answers
2k views

Detecting the number of processors

How do you detect the number of physical processors/cores in .net? …
1
vote

Starting with .NET

Training videos, tutorials and documentation at: www.asp.net/learn. …
1
vote

How to deal with XML in C#

If you create a typed dataset in the designer then you automatically get an xsd, a strongly typed object, and can load and save the xml with one line of code. …
0
votes

Are there any ‘ok’ Image Recognition libraries for .NET?

You might also find this interesting: www.codeplex.com/IR/ …
5
votes

Pros and cons of appSettings vs applicationSettings (.NET app.config)

Application settings can be controlled from a designer (there is usually a Settings.settings file by default) so its easier to modify and you can access them programmatically through the Settings c …
0
votes

Should we select VB.NET or C# when upgrading our legacy apps?

I'm not biased to either language but you do have to factor in that if the majority of developers are into c# then that makes recruiting these developers easier, you may also find more examples and …
0
votes

Why is modulus operator not working for double in c#?

Modulus is defined in msdn as: x - (x / y) * y If you do it this way manually it seems to get the correct result. …
2
votes

In C# .net, How does one access a control from a static method?

Its possible to pass in a reference to the current form like this: public static void ReceiveMSG(string message, MainForm mainform) { mainform.txtDisplayMessages.AppendText(mes …
1
vote

Installing the .NET reference source code (RSCC)

It seems like there are two setups, one to download all the files and another to get them on demand. When I tried this I used the …