What is the ‘CLSCompliant’ attribute in .NET?
What is the CLSCompliant attribute? 5 Answers 5
What is the CLSCompliant attribute? 5 Answers 5
I would like to parse a string such as p1=6&p2=7&p3=8 into a NameValueCollection. What is the most elegant way of doing this when … Read more
One of the things that get me thoroughly confused is the use of session.Flush,in conjunction with session.Commit, and session.Close. Sometimes session.Close works, e.g., … Read more
I installed a windows service using installUtil.exe. After updating the code I used installUtil.exe again to install the service w/o uninstalling the original … Read more
There’s a part in my apps that displays the file path loaded by the user through OpenFileDialog. It’s taking up too much space … Read more
Which is the preferred way to convert an Enum to a String in .NET 3.5? Enum.GetName Enum.Format ToString Why should I prefer one … Read more
I have some code like this: If key.Equals(“search”, StringComparison.OrdinalIgnoreCase) Then DoSomething() End If I don’t care about the case. Should I use OrdinalIgnoreCase, … Read more
When I open my solution by double click on solution file in a file manager, Visual Studio 2012 asks me whether I want … Read more
Just looking for a short overview of GAC for a layman, not a link please. 8 Answers 8
Simple curiosity here, tinged with some practical concerns because I get caught out by this occasionally. How come Color.DarkGray is lighter than Color.Gray? … Read more