Search Results

3
votes

C#, int or Int32? Should I care?

I know that the Best Practice is to use int, and all MSDN code uses int. However, there's not reason beyond standardisation and consistency as far as I know. …
0
votes

How can a C++ windows dll be merged into a C# application exe?

Have you tried ILMerge? http://research.microsoft.com/~mbarnett/ILMerge.aspx ILMerge is a ut …
0
votes

Best way to make events asynchronous in C#

You have a few options, as already detailed, but in my experience, you're better off leaving delegates and BeginInvoke, and using BackgroundWorker instead (v2.0+), as it is easier to use and also a …
2
votes

Access denied error when building solution in Visual Studio 2005

It sounds like you have a DLL that gets locked every now and then, preventing VS from overwriting/locking it. Have you tried using tools like Process Explorer ( …
0
votes

Write a program in 30 minutes (for a C# programmer candidate interview question).

I've done a few tests recently. One was to develop a Windows.Forms application that allowed Create/Update to a database (that also had to be created). They were looking for a developer that knew ho …
1
vote

What does IformatProvider do?

IFormatProvider provides culture info to the method in question. …
0
votes

How can I show a superscript character in .NET GUI labels?

In the label, use the HTML character reference "²" for the superscript in m². …