M
Maersa
Hi,
I have the following code, but can't catch the exception..
try
{
Int32 v =
(Int32)TypeDescriptor.GetConverter(typeof(int32)).ConvertFromString(
"test" );
// Int32 v = Convert.ToInt32( "test" );
}
catch( Exception e )
{
throw new Exception( e.Message, e );
}
Appreciate your help.
thanks,
I have the following code, but can't catch the exception..
try
{
Int32 v =
(Int32)TypeDescriptor.GetConverter(typeof(int32)).ConvertFromString(
"test" );
// Int32 v = Convert.ToInt32( "test" );
}
catch( Exception e )
{
throw new Exception( e.Message, e );
}
Appreciate your help.
thanks,