AutomationDrivers.Core.Configuration.ProjectPath.ProjectPath C# (CSharp) Метод

ProjectPath() приватный Метод

private ProjectPath ( string fullPath ) : System
fullPath string
Результат System
        private ProjectPath(string fullPath)
        {
            var folder = new DirectoryInfo(fullPath);
            if (!folder.Exists)
            {
                throw new DirectoryNotFoundException();
            }
            FullPath = fullPath;
        }