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

Find a project item from its name.

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

Syntax

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

Parameters

projectItems
Type: ProjectItems
name
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