In the last days I took a watch to the orchad source, and in the bootstrap class during the registration of the components with Autofac I saw same code that I can't explain!!!! I will provide an example:

builder.RegisterType<A>().As<IA>();
{
  builder.RegisterType<B>().As<IB>();
  {
     builder.RegisterType<C>().As<IC>();
  }
}

I can't undstand what the brace do? Is it like a sub registration??

Hope somebody can help me!

Thanks

link|improve this question

75% accept rate
Thanks Gabe! English is not my language!! Thank – Marco Leo May 19 '11 at 20:45
This has nothing to do with Autofac. It's a c# thing. As ROBOLav said, it doesn't do anything. – Steven May 20 '11 at 7:30
@steven you are right! Sorry i didn't know that! – Marco Leo May 21 '11 at 14:37
No need to apologize ;-) – Steven May 21 '11 at 15:18
I believe that it's there only to have the IDE indent the code to make it a bit easier to read. It's grouping certain things together. – Darren Kopp Aug 29 '11 at 16:52
feedback

1 Answer

up vote 5 down vote accepted

This would be no different than writing:

builder.RegisterType<A>().As<IA>();
builder.RegisterType<B>().As<IB>();
builder.RegisterType<C>().As<IC>();

Surrounding something with braces creates a different context, e.g:

int a = 1;
{
    int b = 2;
}
// b not accessible from here

In your case, the function doesn't seem to return anything, and therefore, context doesn't really matter.

link|improve this answer
Yup, it's just a simple hack to have the IDE do intenting to make things more readable – Darren Kopp Aug 29 '11 at 16:51
feedback

Your Answer

 
or
required, but never shown

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