Пример #1
0
 /// <summary>
 /// Create new instance of <see cref="QuickIOFileInfo"/>
 /// </summary>
 public QuickIOFileInfo(String path)
     : this(new QuickIOPathInfo(QuickIOPath.GetFullPath(path)))
 {
 }
Пример #2
0
 /// <summary>
 /// Create new instance of <see cref="QuickIODirectoryInfo"/>
 /// </summary>
 public QuickIODirectoryInfo(String path)
     : this(new QuickIOPathInfo(QuickIOPath.GetFullPath(path)))
 {
     Contract.Requires(!String.IsNullOrWhiteSpace(path));
 }