Simple class constructor that attempts to parse the passed string into a valid integer value. If the String argument cannot be parse because it is either invalid or malformed then an exception is generated.

Namespace:  SnmpSharpNet
Assembly:  SnmpSharpNet (in SnmpSharpNet.dll) Version: 0.5.2.0 (0.5.2.0)

Syntax

C#
public Integer32(
	string val
)
Visual Basic (Declaration)
Public Sub New ( _
	val As String _
)
Visual C++
public:
Integer32(
	String^ val
)

Parameters

val
Type: System..::.String
The integer value represented as a String

See Also