vote up 4 vote down star
1

When learning C# for the first time, I was astonished that they had no support for macros in the same capacity that exists in C/C++. I realize that the #define keyword exists in C#, but it is greatly lacking compared to what I grew to love in C/C++. Does anyone know why real macros are missing from C#?

I apologize if this question is already asked in some form or another - I promise I spent a solid 5 minutes looking for duplicates before posting.

flag

76% accept rate
11  
I can answer in three words (plus a trademark): Macros Are Evil(tm) – Randolpho Sep 2 at 19:52
Yeah, honestly, there is little reason to use macros these days in most C++ code. – Ed Swangren Sep 2 at 19:56
1  
Lots of good answers there, so just an aside--C# is not derived from C or C++, it was derived from Java. Java was only loosely based on C/C++ and tried to eliminate many of the bad parts (of which macros and the entire pre-processor are possibly the biggest). The naming seems to mislead people--and also the fact that the language has added features at a much quicker pace than Java... – Bill K Sep 2 at 20:29
Macros are great! The flexibility they allow is awesome. Sure they allow you to shoot yourself in the foot, but abhorring them completely is a mistake in my opinion. – Andrew Garrison Sep 2 at 20:33
@Andrew: Perhaps you could show us an example of a situation where macros are a good solution? Otherwise, it seems like you're very much in the minority. Every other C++ developer hates macros. I personally can't remember the last time I even considered using a macro in C++. There are just always better solutions. Which is why other languages don't add macros. – jalf Sep 2 at 20:50
show 2 more comments

6 Answers

vote up 27 vote down check

from the C# faq.

http://blogs.msdn.com/CSharpFAQ/archive/2004/03/09/86979.aspx

Why doesn't C# support #define macros? In C++, I can define a macro such as:

#define PRODUCT(x, y, z) x * y * z

and then use it in code:

int a = PRODUCT(3, 2, 1);

C# doesn't allow you to do this. Why?

There are a few reasons why. The first is one of readability.

One of our main design goals for C# is to keep the code very readable. Having the ability to write macros gives the programmer the ability to create their own language - one that doesn't necessarily bear any relation to what the code underneath. To understand what the code does, the user must not only understand how the language works, but he must also understand all of the #define macros that are in effect at that point in time. That makes code much harder to read.

In C#, you can use methods instead of macros, and in most cases, the JIT will inline them, giving you the same performance aspect.

There's also a somewhat more subtle issue. Macros are done textually, which means if I write:

int y = PRODUCT (1 + 2, 3 + 4, 5 + 6)

I would expect to get something that gives me 3 * 7 *11 = 231, but in fact, the expansion as I've defined it gives:

int y = 1 + 2 * 3 + 4 * 5 + 6;

which gives me 33. I can get around that by a judicious application of parenthesis, but its very easy to write a macro that works in some situations and not in others.

Although C# doesn't strictly speaking have a pre-processor, it does have conditional compilation symbols which can be used to affect compilation. These can be defined within code or with parameters to the compiler. The "pre-processing" directives in C# (named solely for consistency with C/C++, despite there being no separate pre-processing step) are (text taken from the ECMA specification):

#define and #undef Used to define and undefine conditional compilation symbols

#if, #elif, #else and #endif

Used to conditionally skip sections of source code

#line Used to control line numbers emitted for errors and warnings.

#error and #warning Used to issue errors and warnings.

#region and #endregion

Used to explicitly mark sections of source code.

See section 9.5 of the ECMA specification for more information on the above. Conditional compilation can also be achieved using the Conditional attribute on a method, so that calls to the method will only be compiled when the appropriate symbol is defined. See section 24.4.2 of the ECMA specifcation for more information on this.

Author: Eric Gunnerson

link|flag
4  
Word of God is always good in a question like this. +1 – Randolpho Sep 2 at 19:53
2  
You may want to escape some of that formatting: \# – Henk Holterman Sep 2 at 19:55
Thanks Hank, was wondering why it didn't look like what I had copied and pasted. – DouglasH Sep 2 at 19:58
thanks for the format. removed the \ that escaped earlier. – DouglasH Sep 2 at 20:46
vote up 0 vote down

This article compares perl and lisp macros but the point is still the same: Text level macros (perl/c++) cause massive problems compared to source level macros (lisp)

http://lists.warhead.org.uk/pipermail/iwe/2005-July/000130.html

Braver people than me have rolled their own macro like system in c# http://www.codeproject.com/KB/recipes/prepro.aspx

link|flag
vote up 0 vote down

Macros are a tool for the days when most programmers were smarter than the compiler. In C/C++, there are still some cases where this is true.

Nowdays, most programmers aren't as smart as the C# compiler/runtime.

link|flag
vote up 1 vote down

Macros are overused in C++ but they still have their uses, however most of these uses are not relevant in C# due to reflection and the better integrated use of exceptions for error reporting.

link|flag
vote up 3 vote down

Macros in C / C++ were used to define constants, produce small inline functions, and for various things directly related to compiling the code (#ifdef).

In C#, you have strongly typed constants, a smart enough compiler to inline functions when necessary, and knows how to compile stuff the right way (no precompiled header nonsense).

But there's no particular reason why you couldn't run your CS file through the C preprocessor first if you really wanted to :)

link|flag
1  
Good point. Nothing is stopping using the C preprocessor if you really want. – Matthew Lock Sep 3 at 1:17
vote up 19 vote down

C++-style macros add a huge amount of complexity without corresponding benefit, in my experience. I certainly haven't missed them either in C# or Java. (I rarely use preprocessor symbols at all in C#, but I'm occasionally glad they're there.)

Now various people have called for Lisp-style macros, which I know little about but certainly sound rather more pleasant than C++-style ones.

What do you particularly want to do with macros? We may be able to help you think in a more idiomatically C# way...

link|flag
I hate #define macros. I am soooooo glad C# doesn't support such macros. I actually have never seen a good use of #define. – Bobby Cannon Sep 2 at 19:56
There are plenty of good (or at least necessary) uses of #define in C. In C++, they're primarily useful to support conditional compilation, and any other use is probably a bad idea. – David Thornley Sep 2 at 20:05
Jon, a fully working code gen built into the language, what a novel concept:) hopefully one that is not designed to output exactly C# as the Codedom is now. +1 – DouglasH Sep 2 at 20:10
I voted up, but I'm going to point a minor contradiction - "I used C 12 years ago but it had no affect me". – Chris S Sep 2 at 20:56
@Chris: Could you elaborate? – Jon Skeet Sep 2 at 21:24

Your Answer

Get an OpenID
or

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