0
votes
5answers
54 views
Using App.config to set strongly-typed variables
I'm a C# novice running .NET 3.5, and I'd like to store a bunch of application default values in App.config, as the settings may vary by server environment (e.g. development, stagi …
1
vote
2answers
17 views
Proper usage of xml file-based storage as database alternative in ASP.NET site
I'm building a small application and to reduce hosting costs and dependencies, I am planning to store all persistent data to xml files rather than a Sql Server database.
In this …
0
votes
4answers
20 views
Up-to-date XML-Documentation Builder for C#
I want to start using XML-Documentation of my code and am desperately searching for an up-to-date (meaning .NET-3.5 SP1) to do so.
I found NDoc, but it only supports .NET-1.1 and …
1
vote
2answers
22 views
XmlDocument.Save omitting elements
I have the following XML that is built up at runtime using an XmlDocument:
<?xml version="1.0" standalone="yes"?>
<NewConfig xmlns="http://tempuri.org/NewConfig.xsd">
…
0
votes
3answers
70 views
Why doesnt Regex.Match have a GetEnumerator function?
Regex.Match has a .Success and .NextMatch why doesnt it have a GetEnumerator function?
With my logic it seems easy enough to implement. But it isnt in 3.5 so can anyone tell me w …
4
votes
7answers
73 views
WPF Layout of user control as a run
Hi
In WPF, I want to create a Window that looks like the following:
On the screen are four user control, #1, 2, 3, 4. As you can see, user control 2 should not be rendered as …
1
vote
1answer
11 views
Is there a workaround to IE7’s user agent being defaulted after installing .Net Framework 3.5 SP1?
I have verified that after installing the .Net Framework 3.5 SP1, when the User Agent string exceeds a certain number of characters, the user agent is defaulted to 'userAgent strin …
1
vote
2answers
92 views
Test “User Must Change Password” field in .Net 3.5
I'm trying to perform some basic AD User managment tasks in C# using .Net 3.5
I've got a System.DirectoryServices.AccountManagement.UserPrincipal object that contains the user det …
1
vote
2answers
48 views
How to create a thread-safe pool of objects?
In my server application (written in C#), I need to create a pool of same type of objects. I pull an object from pool when I need, and it goes back to pool when it is no longer nee …
0
votes
1answer
48 views
LINQ - Set element in Dictionary to empty where DateTime value is oldest
I have a Dictionary<string, XMLMessage> where XMLMessage is a struct:
private struct XMLMessage
{
public string Message { get; set; }
public DateTime …
0
votes
5answers
99 views
What am I doing wrong with my Regex?
Hi
I am not sure what I am doing wrong. I am trying to use the asp.net regex.replace but it keeps replacing the wrong item.
I have 2 replaces. The first one does what I want it t …
0
votes
2answers
53 views
Is using a table inheritance a valid way to avoid using a join table?
I've been following a mostly DDD methodology for this project, so, like any DDD'er, I created my domain model classes first. My intention is to use these POCO's as my LINQ-to-SQL e …
0
votes
3answers
70 views
Accessing member variable directly vs through property
Friends,
I am asking this question with performance as main concern. But I would like to know other possible advantages / disadvantages for both approaches.
The question is: Sinc …
0
votes
1answer
11 views
Which Timer object should I use in long running processes in .Net?
Which Timer object should I use in long running processes in .Net?
The timer will be used in a Windows Service, and I wish to find the best fit performance wise.
0
votes
1answer
16 views
Adding a ‘User’ to the eventlog using Enterprise Library Logging Block
I'm using the Enterprise Library Logging application block to allow my application to log various events. This is working fine and the logs can be seen by Event Viewer (eventvwr.e …
