Search Results

0
votes

Duplicate keys in .NET dictionaries?

This is the first implementation I was able to find; PowerCollections may have one as well, I've not c …
1
vote

Custom Compiler Warnings

I don't think you can. As far as I know support for ObsoleteAttribute is essentially hardcoded into the C# compiler; you can't do anything similar directly. What you might be able to do is …
1
vote

Big integers in C#

This won't help you, but there was supposed to be a BigInteger class in .Net 3.5; it got cut, but from statements made at PDC, it will be in .Net 4.0. They apparently have spent a lot of time optim …
1
vote

C#: Determine derived object type from a base class static method

You can't do it without outside information; either the type of the derived class, an instance of it, or the fully-qualified name of the derived class. Any of these are equivalent to what you're al …
0
votes

IEnumerable.Except wont work, so what do I do?

try this: var userProjects = GetProjects(); return db.Projects.Except(userProjects.ToArray()); The ToArray should force evaluation of the sequence (if I'm understa …
2
votes

A clean way of generating QueryString parameters for web requests

Use HttpUtility.ParseQueryString, as someone suggested (and then deleted). This will work, because the return value from that method is actually an HttpValueCollection, which inherits NameV …
2
votes

Will T-Sql SET parameters be reset with pooled .NET connections?

By default (that is, unless you include "Connection Reset=false" in the connection string), .NET resets the connection with the sp_reset_connection stored procedure before reusing it; …
1
vote

Why does visual studio .net 2008 lose debug ability after adding global.asax file?

Post the entire contents of global.asax and global.asax.cs (if it exists). My guess is that the Application directive at the top of global.asax has a compiler directive or something in it that's ca …
3
votes

Asp.NET Server Control Postback

Override the CreateChildControls method and create/add the button (and register the handler) in that method. Using OnInit/OnLoad to create controls like this is incorrect and will lead to i …
3
votes

ItemGroup Item scope, alternatively “Why does MSBuild hate me?”

Have you tried using DependsOnTarget rather than CallTarget? It could be that CallTarget is causing the scope issue. …
5
votes

Order of catch clauses

The order is irrelevant unless one of the exceptions named in a catch handler inherits from another exception named in another handler, in which case the more-derived catch should come first (or it …
3
votes

Converting bytes to GB in C#?

The original code is succinct, easy to read, and with reasonable variable names, self-documenting; I wouldn't change it. If you absolutely must refactor, you could create a set of extension …
0
votes

Is it ok to use ticks to pass datetime using ticks between pages of an application

Given that Ticks is defined as the number of 100-nanosecond intervals that have passed since 12 midnight, January 1, 0001, I can't see there being any functional issues, as long as you either conve …
1
vote

Dynamic typing of foreach variable.

If you only reference values available on the supertype (Control) inside the foreach, then just declare it as Control. If you have type-specific logic, you'll still need to declare it as Co …