IKVM.Internal.VirtualFileSystem.List C# (CSharp) Method

List() static private method

static private List ( string path ) : string[]
path string
return string[]
        internal static string[] List(string path)
        {
            #if FIRST_PASS
            return null;
            #else
            VfsDirectory dir = GetVfsEntry(path) as VfsDirectory;
            return dir == null ? null : dir.List();
            #endif
        }