2
votes
Doing a Cast Within a LINQ Query
Depending on what you are trying to do, one of these might do the trick:
List<Line> parentLineList1 =
(from t in content.ChildControls.OfType<TabSection>()
from p i …
6
votes
Named string formatting in C#
The framework itself does not provide a way to do this, but you can take a look at this po …
1
vote
How can I prevent a base constructor from being called by an inheritor in C#?
If what you want is to not call either of the two base class constructors, this cannot be done.
C# class constructors must call base class constructors. If you don't call o …
14
votes
C# .NET 3.0/3.5 features in 2.0 using Visual Studio 2008
You can use any new C# 3.0 feature that is handled by the compiler by emitting 2.0-compatible IL and doesn't reference any of the new 3.5 assemblies:
Lambdas (used as Func<.. …
2
votes
How do you add dynamic ‘where’ clauses to a linq query?
Here's one way of adding a variable number of where clauses to your LINQ query.
Note that I haven't touched your bitmask logic, I just focused on the multiple wheres.
…
1
vote
Why ^*$ matches “127.0.0.1”
If you try
Regex.Match("127.0.0.1", "^*1$")
You'll see it also matches. The Match.Index property has a value of 8, meaning that it matched the last '1', n …
5
votes
Using LINQ how do I have a grouping by a “calculated field”
How about grouping by x.Year/10? (haven't tested this!)
var results = (from x in ctx.Items
group x by (x.Year / 10 * 10) into decades
orderby decades.C …
2
votes
Trying to change properties of an IQueryable collection
Brandon, this is a normal mistake when using LINQ. See, the IQueryable returned from LINQ does not actually contain your items, that's why you can't index into it. It has only enough information to …
1
vote
Boxing, what’s your preference and which do you think is faster?
"If I intend to pass that same value
around as an Object do I really wanna
unbox/box every time?"
The short answer: No, you wouldn't want to do a lot of box …
3
votes
Is there something wrong with BitArrays in C#?
You are setting bits to true twice. You are not settings moreBits to true, so it defaults to all-false. I blame copy/paste!
…
5
votes
Performing part of a IQueryable query and deferring the rest to Linq for Objects
Both of the previous answers work, but it reads better if you use AsEnumerable() to cast the IQueryable to IEnumerable:
// Using Bob's code...
var result = datacontext.Table
.Whe …
1
vote
How can I convert bits to bytes?
bool[] bools = ...
BitArray a = new BitArray(bools);
byte[] bytes = new byte[a.Length / 8];
a.CopyTo(bytes, 0);
EDIT: Actually this also returns:
…
8
votes
Linq - How to aggregate the results of another query
This solution iterates the list only once with Aggregate(), but for empty lists it will return the seed value. By the way, the seed values are int.MaxValue and int.M …
0
votes
How do you specify what a default state of a derived struct should be in C#?
Just for completeness:
Value types in C# (including arrays, structs, enums) are always initialized to all zeros. Reference types are also initially zero, better know as null. …
1
vote
Sending and receiving an image over sockets with C#
If you have access to the JPG file itself (as in the example), you should send the file bytes and not use the Image/Bitmap classes. By reading a JPG file and re-encoding into JPG you are decreasing …
