For a slightly different answer: LINQ.
Extension methods are obtained only via "using" statements. So either the query syntax or the fluent interface will only work with the right "using" statements.
Even without LINQ, I'd say use "using"... reasoning that the more you can understand in fewer characters, the better. Some namespaces are very deep, but add no value to your code.
There are other extension methods too (not just LINQ) that would suffer the same; sure, you can use the static class, but the fluent interface is more expressive.
