System.IO.DirectoryInfo.DirectoryInfo C# (CSharp) Method

DirectoryInfo() private method

private DirectoryInfo ( String fullPath, String originalPath ) : System.Collections.Generic
fullPath String
originalPath String
return System.Collections.Generic
        internal DirectoryInfo(String fullPath, String originalPath)
        {
            Debug.Assert(Path.IsPathRooted(fullPath), "fullPath must be fully qualified!");

            // Fast path when we know a DirectoryInfo exists.
            OriginalPath = originalPath ?? Path.GetFileName(fullPath);
            FullPath = fullPath;
            DisplayPath = GetDisplayName(OriginalPath);
        }

Same methods

DirectoryInfo::DirectoryInfo ( string path )
DirectoryInfo::DirectoryInfo ( SerializationInfo info, StreamingContext context ) : System.Collections.Generic
DirectoryInfo::DirectoryInfo ( String path ) : System.Collections.Generic
DirectoryInfo::DirectoryInfo ( string fullPath, Interop &findData ) : System.Diagnostics