0
votes
Help Understanding .Net Configuration Options
I support Rob Grays answer, but wanted to add to it slightly. This may be overly obvious, but if you are using multiple clients, the app.config should store all settings that are installation speci …
-1
votes
.NET XML serialization gotchas?
Private variables/properties are not
serialized in XML serialization, but
are in binary serialization.
I believe this also gets you if you are exposing the …
0
votes
Multiple Cases in Switch:
Another option would be to use a routine. If cases 1-3 all execute the same logic then wrap that logic in a routine and call it for each case. I know this doesn't actually get rid of the case state …
1
vote
How can I programmatically determine if I have write privileges using C# in .Net?
ScottKoon is write about checking the windows ACL permissions. You can also check the managed code permissions using CAS (Code Access Security). This is a .Net specific method of restricting permis …
0
votes
Is it correct to use inheritance instead of name aliasing in c#?
I essentially agree with Ed. If you don't need to actually extend the functionality of the generic List construct, just use a generic List:
List<Customer> customerList = new L …
0
votes
Does an empty array in .NET use any space?
If I understand correctly, a small amount of memory will be allocated for the string arrays. You code essentially requires a generic list to be created anyway, so why not just return that?
…
4
votes
hashing sensitive data
I think you are taking the wrong approach here. The idea of a hash is that it is one-way, noone should be able to use that hash to access the system (and if they can then you are likely still in vi …
-1
votes
Is there a sorted collection type in .NET?
.Net has the SortedList class: MSDN - Sorted List
Failing that you can just use …
3
votes
C# class from a SQL database table.
You definitely shouldn't be creating a class for every stored procedure. There are a number of approaches you can take to handling your database interactions. You should have a good look at the maj …
