up vote 15 down vote favorite
5
share [g+] share [fb]

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
}
link|improve this question

3  
While it's not possible in C#, it's possible in alternative .NET strongly-typed languages like Boo and Nemerle. – Jordão Oct 26 '10 at 13:15
feedback

9 Answers

up vote 12 down vote accepted

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|improve this answer
no problem littlegeek; i voted you up for beating me by 4 hours even without a Clipboard :) – Jacob Krall Oct 26 '08 at 6:20
Very cool, thanks. – Brian R. Bondy Oct 26 '08 at 13:11
The 'Text Template Transformation Toolkit' link is broken, try this one instead: wekeroad.com/2008/10/13/… – Grant Peters Jan 16 at 7:26
feedback

sort of look for t4 templates

Sorry on iphone and can't point to resource.

Scott Hansleman posted last week about it.

link|improve this answer
4  
This is exactly why SO needs an special iPhone version. – Lucas McCoy Jul 26 '09 at 17:35
feedback

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|improve this answer
feedback

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

link|improve this answer
feedback

No. (more text to meet minimum answer length)

link|improve this answer
1  
why downvote, that was funny! – GogaRieger Dec 8 '09 at 21:48
feedback

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|improve this answer
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 '09 at 11:23
And of course, you CAN write a complex number class (or better yet, a struct) in C#, but template libraries that do calculations on numeric type parameters are hard to write and use, see codeproject.com/KB/cs/genericnumerics.aspx and codeproject.com/KB/cross-platform/BenchmarkCppVsDotNet.aspx – Qwertie Oct 18 '11 at 17:18
feedback

Most people insist on trying to metaprogram from inside their favorite language. That doesn't work if the language doesn't support metaprogramming well; other answers have observed that C# does not.

A way around this is to do metaprogramming from outside the language, using program transformation tools. Such tools can parse source code, and carry out arbitrary transformations on it (that's what metaprogramming does anyway) and then spit out the revised program.

If you have a general purpose program transformation system, that can parse arbitrary languages, you can then do metaprogramming on/with whatever language you like. See DMS Software Reengineering Toolkit for such a tool, that have robust front ends for C, C++, Java, C#, COBOL, PHP and a number of other programming langauges, and has been used for metaprogramming on all of these.

DMS succeeds because it provides a regular method and support infrastructure for complete access to the program structure as ASTs, and in most cases additional data such a symbol tables, type information, control and data flow analysis, all necessary to do sophisticated program manipulation.

EDIT (in response to comment): One could apply DMS to implement the OP's task on C#.

link|improve this answer
1  
-1: Good answer, but it doesn't answer this particular question. – John Saunders Feb 26 '10 at 18:57
1  
@Saunders: Actually it does, but you have do some homework. If you want to implement the OP's specific task, you'll need to implement constant-folding program transformations and focus them on calls to your Fibonacci function. I note that you dinged my answer, when none of the answers addressed the OP's specific question either. – Ira Baxter Feb 26 '10 at 19:00
thanks, you pointed me in the right direction for something Im working on! – Ralph Willgoss Jun 18 '10 at 5:05
feedback

try taking a look at script.net; more info at --http://www.orbifold.net/default/?p=2457

link|improve this answer
feedback

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|improve this answer
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
feedback

Your Answer

 
or
required, but never shown

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