vote up 6 vote down star
2

In particular, would it be possible to have code similar to this c++ code executed at compile time in c#?

template <int N>
struct Factorial 
{
    enum { value = N * Factorial<N - 1>::value };
};

template <>
struct Factorial<0> 
{
    enum { value = 1 };
};

// Factorial<4>::value == 24
// Factorial<0>::value == 1
void foo()
{
    int x = Factorial<4>::value; // == 24
    int y = Factorial<0>::value; // == 1
}
flag

7 Answers

vote up 5 vote down check

No, metaprogramming of this complexity is not supported directly by the C# language. However, like @littlegeek said, the Text Template Transformation Toolkit included with Visual Studio will allow you to achieve code generation of any complexity.

(More from Scott Hanselman)

link|flag
no problem littlegeek; i voted you up for beating me by 4 hours even without a Clipboard :) – Jacob Oct 26 '08 at 6:20
Very cool, thanks. – Brian R. Bondy Oct 26 '08 at 13:11
vote up 2 vote down

It is going to be possible. Watch Anders Hejlsberg's The Future of C# talk.

link|flag
vote up 1 vote down

You must be carefull when talking about compile-time when dealing with Java or .Net languages. In those languages you can perform more powerfull metaprogamming (in the broader sense - reflection- ) than C++ due to the fact that "compilation time" (JIT) can be postponed after "run time" ;)

link|flag
vote up 2 vote down

The essential difference between .NET Generics and C++ Templates is that generics are specialized at runtime. Templates are expanded at compile time. The dynamic behavior of generics makes things like Linq, expression trees, Type.MakeGenericType(), language independence and code re-use possible.

But there is a price, you can't for example use operators on values of the generic type argument. You can't write a std::complex class in C#. And no compile-time metaprogramming.

link|flag
I know by experience that template code can be reused. And the so-called "language independence" you're referring to actually means you have to use a .net compliant language... There are limitations to both .net generics as well as c++ templates. But these are not the correct ones. – BenoĆ®t Feb 9 at 11:23
vote up 3 vote down

sort of look for t4 templates

Sorry on iphone and can't point to resource.

Scott Hansleman posted last week about it.

link|flag
This is exactly why SO needs an special iPhone version. – Lucas McCoy Jul 26 at 17:35
vote up 0 vote down

To a very limited extent, C# something that could be interpreted as meta-programming. But really it's nothing more than overload resolution. It's a real stretch to call it meta programming.

Example:

static string SomeFunc<T>(T value) {
    return "Generic";
}
static string SomeFunc(int value) {
    return "Non-Generic";
}

static void Example() {
    SomeFunc(42);           // Non-Generic
    SomeFunc((object)42);   // Generic
}
link|flag
I love getting voted down with no reason or comment. – JaredPar Oct 26 '08 at 5:23
The questioner hasn't really specified what they mean by Metaprogramming, but I think it's safe to say that it's different to what you mean. – Anthony Jan 3 '09 at 17:12
@Anthony, the problem with ambiguous questions is they produce incorrect or not-intented answers. I could not answer the question or provide an answer which may answer the question. As long as I'm here, I figure I might as well answer :) – JaredPar Jan 3 '09 at 18:57
vote up -4 vote down

No. (more text to meet minimum answer length)

link|flag
why downvote, that was funny! – GogaRieger Dec 8 at 21:48

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.