I come from a VB.Net environment, where using Imports System and then IO.Directory.GetFiles(...) works.

On the other hand, it seems that using System; is not sufficient to write use IO.Directory without prefixing it with System.. The only workaround seems to be using IO = System.IO;

Why?


Example code:

using System;
using System.IO;

namespace Test {
    class Program {
        static void Main(string[] args) {
            System.Console.WriteLine(IO.Directory.GetFiles(System.Environment.CurrentDirectory)[0]);
        }
    }
}

Edit: My question is not what should I do to get my code working, but specifically "why cant I write IO.Directory.GetFiles ??"

link|improve this question

79% accept rate
Just bear in mind that you always get a small indication of your un-added namespaces at the bottom right the class name when you type the exact class name. You can expand it by hovering your mouse on the red indication and do the required. – nawfal Feb 24 at 15:18
feedback

2 Answers

Add

using System.IO;

and you'll have the behavior you expect. C# does not make child namespaces available without a using directive (or full qualification.)

link|improve this answer
+1 Nice, just of interest perhaps you have any references to MSDN regarding such requirement it would be great – sll Feb 24 at 15:12
Here you go: msdn.microsoft.com/en-us/library/0d941h9d.aspx – Matt T Feb 24 at 15:13
1  
@Matt: ok but question is why using System; is not sufficient to write use IO.Directory without prefixing it with System., so using exists but does not allow accessing concrete types of child namespeces without additional using for child namespace, like IO.Directory.GetFiles() without usign System.IO – sll Feb 24 at 15:22
1  
@nawfal: My suqestion is not how I can use Directory.*, but how I can write IO.Directory.* – Clément Feb 24 at 15:33
1  
In that case, the only workaround is what you have yourself posted in the question. That's the C# way of doing things. As to "why" it is so, I'm helpless, I was never bothered by it. – nawfal Feb 24 at 15:37
show 11 more comments
feedback

The thing you are talking about is not posssible in C# that might be diffrence between C# and vb.NET.

If you are converting vb.Net code to C# than make use of this site will help you lot

vb.net to c#

Code fo ryou

System.IO.Directory.GetFiles(...)

or add

using System.IO;

will do for you

link|improve this answer
1  
I'd like to get rid of the System prefix. – Clément Feb 24 at 15:20
@Clément , add using System.IO; to your namespace collection at the top! – nawfal Feb 24 at 15:22
feedback

Your Answer

 
or
required, but never shown

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