Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

in the XNA framework for example there is a SpriteBatch Class. The SpriteBatch.Begin() method accepts parameters like this:

spriteBatch.Begin(SpriteSortMode.FrontToBack, BlendState.AlphaBlend);

How can I create a class that accepts parameters in the same way?

share|improve this question

2 Answers

up vote 7 down vote accepted

create an Enum:

enum FooBarMode
{
     FrontToBack,
     BackToFront,
     Whatever
}

and use that as a parameter:

void DoSomething(FooBarMode mode)
{
    switch (mode) // just as an example
    {
        case FooBarMode.FrontToBack:
            Console.WriteLine("FrontToBack");
            break;
        case FooBarMode.BackToFront:
            Console.WriteLine("BackToFront");
            break;
        case FooBarMode.Whatever:
            Console.WriteLine("Whatever");
            break;
        default:
            throw new ArgumentOutOfRangeException("mode");
    }
}
share|improve this answer
+1. Yes and (@MartijnBurger) Visual Studio creates the switch statement for you. Just type the beginning of the word "switch" (often "sw" is enough) and type <Tab> twice, enter a variable name in the placeholder and hit <Enter> and you get a nice switch-statement almost for free! – Olivier Jacot-Descombes Jul 8 '12 at 16:11

The parameter types are enum (SpriteSortMode) and static fields (BlendState.AlphaBlend). The difference is on how complex the choice is. Use enums for simple choices and static fields when it's a bit more complex.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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