ParameterCollection Constructor

[VB]

Public Sub New()

[C#]

public ParameterCollection()

 

Description

The ParameterCollection constructor creates a new instance of the ParameterCollection class.  Upon construction, the ParameterCollection contains no parameters.

 

Example

[VB]

Private Sub GeoCalcNET_ParameterCollection()

Dim pc As New GeoCalcNET.ParameterCollection

End Sub

 

[C#]

private void GeoCalcNET_ParameterCollection()

{

GeoCalcNET.ParameterCollection pc = new GeoCalcNET.ParameterCollection();

}