1
vote
How to detect IIS version using C#?
Use System.Web.HttpRequest.ServerVariables("SERVER_SOFTWARE"). The return value is a string in the format name/version.
…
2
votes
How do I popup the compose / create mail dialog using the user’s default email client?
It's probably not the most efficient or elegant way, but shelling a "mailto:" link will do what you want, I think.
EDIT: Sorry, left out a very important "not".
…
6
votes
Async Method Call
How to call a Visual C# method asynchronously:
http://support.microsoft.com/kb/315582
…
0
votes
C# Remove element of a regular array
In a normal array you have to shuffle down all the array entries above 2 and then resize it using the Resize method. You might be better off using an ArrayList.
…
0
votes
ADO.Net : Get table definition from SQL server tables
I think you need the System.Data.DataTable class:
http://msdn.microsoft.com/en-us/library/system.da …
0
votes
Can someone explain the output of this program?
Sara, he's converting between hexadecimal and binary. Have a read of this:
http://www.purplemath.com/modules/numbbase.h …
1
vote
C# UnitTest - Assert.AreEqual() does not call Equals if the argument is null
No, it's correct - you've initialised t to a new TestClass object, which isn't null, so the assertion fails.
…
0
votes
How would you name these related Property, Class, Parameter and Field in .NET?
I normally prefix private fields with underscore, so I would call it _engine. And I often use very short (e.g. initial letter) parameter names, so that would be Engine e (after all, the inte …
1
vote
.Net Excel Add In Help
This is the article that got me started when I needed to write a Word add-in:
http://support.microsoft.com/kb/302896
…
0
votes
.Net - Restart OS
If you don't mind using the WinAPI, you could call the ExitWindows function, in user32.dll. Here's an article telling you all about it:
…
3
votes
C# enums and booleans - looking for a more elegant way
Replace the enum with classes:
http://www.refactoring.com/catalog/replaceTypeCodeWithClass.html …
2
votes
C# enums and booleans - looking for a more elegant way
I like Scott's suggestion to have a zero timeout mean no timeout. That would result in the following code, which is much more readable, but doesn't involve creating any extra classes. OTOH, if you' …
4
votes
.NET String to byte Array C#
byte[] strToByteArray(string str)
{
System.Text.ASCIIEncoding enc = new System.Text.ASCIIEncoding();
return enc.GetBytes(str);
}
…
0
votes
C# Can I display images in a list box?
Steve, this article might point you in the right direction:
http://www.codeproject.com/KB/combobox/glistbox.aspx …
4
votes
C# Which Event should I use to display data in a textbox when I select an item in a listbox?
SelectedIndexChanged
…
