Search Results

1
vote
2answers
165 views

LINQ to SQL, Generalization

Hi All, I am struggling a bit to figure this one out. I'm working on an ASP.NET MVC project, using LINQ to SQL for my data layer. The database consists of 10 or so different "excep …
0
votes
2answers
45 views

Data Collection from multiple workstations

Hi All, I'm currently working on developing a windows service which will be deployed to all the workstation within the company. The purpose of the service is to collect various statistics a …
0
votes
2answers
42 views

ADSI Library/Control for .NET

Is there an ADSI Library out there for .NET/C#? I have been able to find bits and pieces of code to do some tasks but nothing comprehensive. I'm looking for a library that I can just drop …
2
votes

How can I keep a class from being inherited in C#?

As Joel already advised, you can use sealed instead of final in C#. …
0
votes

Data Collection from multiple workstations

Just answering to wrap up the question. Here is how I ended up implementing it. Data Collection A C# service runs on the workstations. At different intervals …
1
vote

C# write to Excel using Linq

You can: Create a CSV file, which is associated with Excel on most systems. Create Excel Worksheet object and populate it manually. …
0
votes

Unable to make 2 parallel TCP requests to the same TCP Client

Just a thought. If your server takes 2seconds to response, shouldn't the Timeout values be 2000, instead of 20000 (which is 20 seconds)? First argument for AsyncWaitHandle.WaitOne() is in m …