Initializes a new instance of MaxNewInstancesAttribute with the type name of the instances that should be checked and the maximum number of new instances allowed.

Namespace:  SciTech.NetMemProfiler
Assembly:  MemProfiler2 (in MemProfiler2.dll)

Syntax

C#
public MaxNewInstancesAttribute(
	string typeName,
	int instanceCount
)
Visual Basic
Public Sub New ( _
	typeName As String, _
	instanceCount As Integer _
)
Visual C++
public:
MaxNewInstancesAttribute(
	String^ typeName, 
	int instanceCount
)

Parameters

typeName
Type: System..::..String
Type name of the instances that should be checked.
instanceCount
Type: System..::..Int32
Defines the maximum number of new instances that should exist after the target method has been executed.

Remarks

See Also