Tagged Questions
The preferred-solution tag has no wiki summary.
8
votes
3answers
275 views
C# Enum Declaration Format
im new to this and would like to develop sound programming practices.
i am wondering if members of an Enum declaration should be all uppercase or just the first letter?
thank you.
8
votes
10answers
901 views
What are the pros and cons of checked exception?
Do you prefer checked exception handling like in Java or unchecked exception handling like in C# and why?
7
votes
1answer
1k views
Difference between Activator.CreateInstance() and typeof(T).InvokeMember() with BindingFlags.CreateInstance
Forgive me if this question has already been asked and answered.
Given a class of type T, what is the difference between the following?
T myObj = Activator.CreateInstance<T>();
T myObj = ...
5
votes
1answer
107 views
PartialFunction type
in scala play framework I seen this code:
abstract class AnalyserInfo
case class ColumnC(typeName:String,fieldName:String) extends AnalyserInfo
case class TableC(typeName:String) extends AnalyserInfo
...
4
votes
3answers
231 views
Preferred conversion from char (not char*) to std::string
I have a char, a plain old character, that I would like to turn into an std::string. std::string(char) doesn't exist of course. I could create an char array and copy it in, I could go through string ...
4
votes
3answers
263 views
What is the best way to identify which form has been submitted?
Currently, when I design my forms, I like to keep the name of the submit button equal to the id of the form. Then, in my php, I just do if(isset($_POST['submitName'])) in order to check if a form has ...
3
votes
6answers
4k views
Best Practice - Removing item from generic collection in C#
I'm using C# in Visual Studio 2008 with .NET 3.5.
I have a generic dictionary that maps types of events to a generic list of subscribers. A subscriber can be subscribed to more than one event.
...
0
votes
1answer
32 views
Which (of the two below) approach of programming in actionscript is better/preferrable/performs better
I have below piece of code in my actionscript file (defined in a function)
var cmbSyncItems:Object = new Object();
cmbSyncItems = {tooltip:xmlContent.messages.cmbsync[0].tooltip, ...