Search Results

5
votes

CSharpCodeProvider Compilation Performance

CompileAssemblyFromDom compiles to a .cs file which is then run through the normal C# compiler. Example: using System; using System.Collections.Generic; using System.Linq; u …
5
votes

c# downcasting when binding to and interface

When faced with this type of problem, I follow the visitor pattern. interface IVisitor { void DoPigStuff( …
3
votes

.NET WTF?s

CodeDom. Why is almost every class in CodeDom sealed? CodeMemberProperty should support separate visibility for the getter and the setter, but …
3
votes

Does the assign then evaluate of each parameter “pattern” have a name?

The order of evaluation of arguments is strictly left-to-right in C#. When you evaluate the expression i++, what happens is the value of i is calculated …
3
votes

Why do people like case sensitivity?

I maintain an internal compiler for my company, and am tempted to make it a hybrid - you can use whatever case you want for an identifier, and you have to refer to it with the same casing, but nami …
20
votes

Operator Overloading with C# Extension Methods

This is not currently possible, because extension methods must be in static classes, and static classes can't have operator overloads. Mads Torgersen, C# Language PM says: …
14
votes

Unsubscribe anonymous method in C#

var myDelegate = delegate(){Console.WriteLine("I did it!");}; MyEvent += myDelegate; // .... later MyEvent -= myDelegate; Just keep a reference to the delegate around. …
-1
votes

Can you write a block of c++ code inside C#?

You can interact with COM objects very easily from .NET. …
3
votes

Change to 64 bits not allowed when trying to edit in debug, why?

Mike Stall says: EnC does some very low-level things that are pretty OS-speci …
1
vote

What is the simplest way to continuously sample from the line-in using C#

There are no built-in libraries in the .NET framework for dealing with sound, but if you're on Win32, you can use an unmanaged library like DirectSound to do it. Ianier Munoz shows …
5
votes

Is metaprogramming possible in C#?

No, metaprogramming of this complexity is not supported directly by the C# language. However, like @litt …
-2
votes

Firing event on application close.

Use the dispose pattern and a using() block to release resources at the end of the resource lifecycle …