up vote 3 down vote favorite
share [g+] share [fb]

For example, I have created a webpage and it has _Default keyword in it.

public partial class _Default : System.Web.UI.Page 

What does that keyword do in here? What is the point ?

link|improve this question

66% accept rate
1  
It is not a keyword (btw, all C# keywords are lower-cased), it's just a class name – Igor Korkhov Feb 10 '10 at 14:01
feedback

4 Answers

up vote 15 down vote accepted

_Default isn't a keyword, it's your class name.

link|improve this answer
Then why is it coloured ? What is the special thing about it ? – stckvrflw Feb 10 '10 at 14:02
it's just a setting of your IDE (eg. visual studio) (color of classNames) – Andreas Niedermair Feb 10 '10 at 14:03
1  
I can't comment for web development directly, but my class names always appear colored once they are resolved correctly by Intellisense. – Dave Feb 10 '10 at 14:04
Andreas had a better answer, you can just change it even if you really want to. – Dave Feb 10 '10 at 14:05
feedback

default is a keyword used in the C# switch statement, and in VB.Net applies to a default property. That's why the IDE renamed your class _Default, based on the name of the page (Default.aspx). _Default is in itself not a keyword, and appears to be colored differently because every other word on that line is a keyword.

link|improve this answer
1  
True, but completely out of context with this question – Keith Rousseau Feb 10 '10 at 14:02
Wrong context . – Simon P Stevens Feb 10 '10 at 14:04
@Keith - I added a short comment, then edited to expand (while you commented). Hopefully it makes more sense now. – Raithlin Feb 10 '10 at 14:04
out of context. missing default(), just to be complete! – Andreas Niedermair Feb 10 '10 at 14:05
feedback

It is not a keyword, that is the name of the class. Variable names can start with a-z, A-Z, and '_'.

link|improve this answer
feedback

keyword names are lowercase. this is your class name. if your page name is default, asp.net get this name to it's class.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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