Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Can you macro in C#/.NET?
Message
From
30/05/2012 01:44:37
 
 
To
29/05/2012 12:15:20
General information
Forum:
ASP.NET
Category:
Other
Environment versions
Environment:
C# 2.0
Miscellaneous
Thread ID:
01544610
Message ID:
01544729
Views:
39
Debatable - I don't know enough about Dimitry's situation to have an opinion.
If this module will only be used within Dimitry's app then I'd agree that an Assert would be good.
OTOH if a release version of this was intended for use be other developers then I'd still argue for an Exception....

>I don't totally agree here. While it may be a good idea to check, I don't think you should throw an exception. That should be reserved for special cases or user generated errors. In this case, if the parameter is not passed correctly, it's a developer error. Debug.Assert would be a better choice.
>
>>Dimitry: If the enum value could not be used then an int might be a better choice - but whether a string or an int it would be wise to check that it is a valid value. eg:
           int direction = 1;
>>            if (Enum.IsDefined(typeof(ParameterDirection), (ParameterDirection)direction))
>>                param.Direction = (ParameterDirection)1;
>>            else
>>                throw (new InvalidCastException("Invalid ParameterDirection"));
Previous
Reply
Map
View

Click here to load this message in the networking platform