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 …
4
votes
Best way to send an email from a .NET application?
You shouldn't need to worry about client credentials and just use the SmtpClient as suggested by Esteban. You will need the user to provide a valid Smtp server url at configuration, but most ISPs a …
0
votes
How do I effectively persist a .Net font object ?
What type of datastore do you need to persist this in? If it is just user settings that can be persisted in a file you could serialise the font object to a settings file in either binary or xml (if …
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
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?
…
-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 …
