CCNet.Build.SetupPackages.PackageChecker.ParseCustomPackages C# (CSharp) Method

ParseCustomPackages() private static method

private static ParseCustomPackages ( string customPackages ) : HashSet
customPackages string
return HashSet
		private static HashSet<string> ParseCustomPackages(string customPackages)
		{
			if (String.IsNullOrEmpty(customPackages))
				return new HashSet<string>();

			return new HashSet<string>(customPackages.Split('|'));
		}