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.0.0 (0.5.0.0)

Syntax

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

Parameters

val
String
The integer value represented as a String

See Also