Search Results

1
vote
6answers
1k views

Order an Array like another Array in C#

I'm looking for the best algorithm to take array A {0,1,2,3} and make order it like array B {3,1,0,2}. Any ideas? …
15
votes
9answers
9k views

Remove duplicates from a List<T> in C#

Anyone have a quick method for de-duplicating a generic List in C#? …
7
votes
9answers
4k views

Select a random N elements from List<T> in C#

I need a quick algorithm to select a random 5 elements from a generic list. For example, I'd like to get a random 5 elements from a List. …
5
votes
10answers
422 views

Good Features for an ORM

I'm currently working on putting together a fairly simple ORM tool to serve as a framework for various web projects for a client. Most of the projects are internal and will not require massive amo …
0
votes
2answers
223 views

What’s the best way to detect if an IDataReader is empty?

It seems like IDataReader.Read() is always true at least one time (If I'm wrong about this let me know.) So how do you tell if it has no records without just wrapping it in a try/catch? …
21
votes
9answers
2k views

What is the real overhead of try/catch in C#?

So, I know that try/catch does add some overhead and therefore isn't a good way of controlling process flow, but where does this overhead come from and what is it's actual impact? …
2
votes
6answers
709 views

Detecting if an IDataReader contains a certain field before iteration.

So I'm using an IDataReader to hydrate some business objects, but I don't know at runtime exactly what fields will be in the reader. Any fields that aren't in the reader would be left null on the …
2
votes
4answers
286 views

What is the overhead cost associated with IoC containers like StructureMap?

After attending a recent Alt.NET group on IoC I got to thinking about the tools available and how they might work. StructureMap in particular uses both attributes and bootstrapper concepts to map …
4
votes
5answers
2k views

C# Lambda Expressions or Delegates as a Properties or Arguments

I'm looking to create an ValidationRule class that validates properties on an entity type object. I'd really like to set the name of the property to inspect, and then give the class a delegate or …
3
votes
5answers
2k views

Remove Byte Order Mark from a File.ReadAllBytes (byte[])

I have an HTTPHandler that is reading in a set of CSS files and combining them and then GZipping them. However, some of the CSS files contain a Byte Order Mark (due to a bug in TFS 2005 auto merge …
3
votes
2answers
2k views

How do you construct a LINQ to Entities query to load child objects directly, instead of calling a Reference property or Load().

I'm new to using LINQ to Entities (or Entity Framework whatever they're calling it) and I'm writing a lot of code like this: var item = (from InventoryItem item in db.Inventory …
2
votes
4answers
1k views

How do you sort a generic list in C# and allow NULL items to appear first in the list?

I have a generic list of objects in C#, for example sake, here's what the object might be. public class Thing { public string Name { get; set; } public DateTime EditDate { g …
1
vote
2answers
525 views

How do you do a SQL style ‘IN’ statement in LINQ to Entities (Entity Framework) if Contains isn’t supported?

I'm using LINQ to Entities (not LINQ to SQL) and I'm having trouble creating an 'IN' style query. Here is my query at the moment: var items = db.InventoryItem .Incl …
8
votes
5answers
3k views

How do I serialize a C# anonymous type to a JSON string?

I'm attempting to use the following code to serialize an anonymous type to JSON: var serializer = new DataContractJsonSerializer(thing.GetType()); var ms = new MemoryStream(); seria …
4
votes
6answers
730 views

What about a SingleOrNew() method instead of SingleOrDefault() in LINQ?

The SingleOrDefault() method is great because it doesn't throw an exception if the collection you're calling it against is empty. However, sometimes what I want is to get a new object …

1 2 next
15 30 50 per page