6
votes
1
vote
How would you approach this design?
If I'm interpreting this correctly, you could add a constraint on unknownType to be of some interface that contains the properties you need:
class ControlA
{
void Frob<T>( …
4
votes
How to expose only one particular class from an assembly?
The "internal" keyword specifies that a class is accessible only within its own assembly. Perhaps you should tag C2 and C3 with this.
…
9
votes
Does a method that returns a collection get called in every iteration in a foreach statement in C#?
Don't worry about it; it'll only execute GetDataTable() once internally to get the enumerator object from the DataRowCollection, and then fetch a new item from it every run through the loop.
…
9
votes
Writing XML with C#
You might want to examine the API in System.Xml.Linq. It's a bit of a more flexible approach to generating and writing XML. Writing your document might go roughly like this:
XDocu …
0
votes
Linq Distinct on a particular Property
You can do it (albeit not lightning-quickly) like so:
people.Where(p => !people.Any(q => (p != q && p.Id == q.Id)));
That is, "select all people wher …
4
votes
c# reference variable mem allocation
Depending on whether you're on a 32- or 64-bit machine, it'll be either a 32- or 64-bit pointer.
…
0
votes
Control changes in windows form C#
The easiest way to do this would be to simply use a variable on the form named something like "IsChanged." Set it false when the form is initially displayed, and set it true if they make any chang …
0
votes
Question about best practice to implement static functoin that gives unique value on simultaneous access
There is nothing special about static functions that make them more or less safe to use on multiple threads. Instead, you need to examine the data which the function accesses and modifies, and mak …
3
votes
Reasons to Learn LINQ
If you can convince your boss to let you learn new programming languages and technologies on company time, more power to you; but I wouldn't expect to, if I were you. Learn it on your own and help …
0
votes
Bitwise OR Combination
RegexOptions is an enumeration, meaning that internally, it's represented as an integer. The values of it look something like this:
// note the powers of 2
enum RegexOptions {
I …
29
votes
Why does (string)int32 always throw: Cannot convert type ‘int’ to ‘string’
Because there is no type conversion defined from Int32 to string. That's what the ToString method is for.
…
1
vote
Garbage collection in yield Methods
Well, garbage collection doesn't collect it right away. It can't, obviously.
Internally, when you do something like a foreach over your method, it's calling GetEnumerator() and th …
2
votes
Auto Include Files In A C# Project
I suppose the easiest way would be to write a tool to automatically modify the .csproj file, which is just XML, so that it includes your new items.
…
0
votes
Dynamically creating a new instance of IList’s type
The big problem here is: If you don't know the type, how do you know how to make a new one? Not every type in the world has a constructor that takes an int and a string.
…
