4
votes
8answers
94 views
Is there a data structure that holds sets of data in .NET?
I'm looking for a data structure similar to a dictionary that returns the set of all related items to a key.
For example, I would use it like this:
var data = new FancyDataStructure();
data.Add(new …
0
votes
0answers
5 views
C#: Generating .BLT Files for OpenSTV Elections: How Did Stack Overflow (Jeff) Do It for the Mod Election?
I just downloaded OpenSTV after seeing the most recent SO blog post, regarding the results of the moderator election. Jeff wrote that he used OpenSTV to conduct the election, and supplied a ballot …
1
vote
2answers
17 views
FxCop (or equivalent) for non-.Net C++ code
Is there a way to get FxCop to analyze unmanaged C++ code? Setting the /clr flag allowed FxCop to open the .exe. It find a LOT of C++ items, but the analysis on the code is very weak. For example, …
6
votes
2answers
37 views
What does setting up a symbol server give me?
I read through this article: Setting up a Symbol Server, which goes into details on how to set up a shared symbol server for my team.
The thing I'm wondering about is adding my own symbols into the …
1
vote
1answer
16 views
Targeting multiple WCF endpoints with one DLL
Good afternoon,
I am writing a DLL that that leverages WCF to make a web services call. Normally this is fairly straightforward: I configure the endpoint in the .config file and be done with it. …
1
vote
0answers
18 views
.net Application hanging. Weird crash-dump.
Hi,
A production server has an application running 24x7, and sometimes it starts consuming near 50% of CPU. I couldn't reproduce it locally, but I did a Memory Dump with adplus.
The server has Windows …
2
votes
3answers
53 views
How to monitor clipboard content changes in C#?
Hi,
I want to have this feature in my C# program: When the user do Ctrl+C or Copy anywhere (i.e. when the clipboard content changes), my program will get notified, and check whether the content met …
1
vote
3answers
14 views
GetType on a class in a referenced assembly fails
I have an asp.net web project that references a domain project.
From within the web project, I want to create an instance of a class from the domain project using reflection, but I always get null …
1
vote
1answer
39 views
Framework for web development based on .NET
Struts is best for JAVA in my opinion what is good in your opinion for .NET??
EDIT: Point of question is to find out diferent options for this.
1
vote
2answers
21 views
ADO.NET Entity Framework ObjectContext - Caching Question
Hello,
I was wondering if it was wise to cache the Entity Framework's ObjectContext object in the Cache; will this give me issues with multiple connections at the same time that the user will …
0
votes
0answers
3 views
jBPM Web Service
Hi,
I ve got a question regarding jBPM. In one of our projects I developed an enterprise service (.Net) that other systems (jBPM, Delphi, etc.) should receive data from. For this I am providing a …
1
vote
0answers
4 views
caspol.exe doesn’t grant Full trust to the Intranet share on fw2.0 machines
I have few pre .net 3.5 Sp1 machines where i need to run an exe from a local intranet share. Here is the sample CAS commnad I am using to grant full trust to the local intranet share.
CasPol.exe -m …
1
vote
1answer
35 views
How to design a persistent object where a generic type would be greatly helpful.
I'm creating an object that will be used to store 'known quantities' or facts. Ideally, it'd look something like:
public class KnownQuantity<T>
{
public T Quantity { get; set; }
…
5
votes
3answers
51 views
ASP.NET request validation causes: is there a list?
Hello, is anybody aware of a list of exactly what triggers ASP.NET's HttpRequestValidationException? [This is behind the common error: "A potentially dangerous Request.Form value was detected," etc.]
…
1
vote
3answers
62 views
Excel formatting cells
I have a sheet which has date with extra space at end. And i want to remove them so that i can format them as date and sort excel sheet.
I used macros available online for ex:
Sub TrimColumnA()
Dim …
