See also:
NTier Windows Forms Framework Home
NTier Framework API reference

Add a new folder, or if the folder already exists on disk, include the folder only (not including nested items).

Namespace: NTier.AppWizard.Generator
Assembly: NTier.AppWizard.Generator (in NTier.AppWizard.Generator.dll) Version: 1.0.0.0

Syntax

C#
public static ProjectItem AddNewFolderOrIncludeFolder(
	this ProjectItems projectItems,
	string folderName
)
Visual Basic
<ExtensionAttribute> 
Public Shared Function AddNewFolderOrIncludeFolder ( 
	projectItems As ProjectItems,
	folderName As String
) As ProjectItem
Visual C++
public:
[ExtensionAttribute]
static ProjectItem^ AddNewFolderOrIncludeFolder(
	ProjectItems^ projectItems, 
	String^ folderName
)

Parameters

projectItems
Type: ProjectItems
folderName
Type: System..::..String

Return Value

Type: ProjectItem

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type ProjectItems. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also