How does this:
public TimeSpan Timeout
{
get { return timeout; }
set
{
timeout = value;
if(timeout < licenseTimeout)
licenseTimeout = timeout;
}
}
private TimeSpan timeout = TimeSpan.FromMi nutes(10);
Convert to VB.NET when in VB.NET Opertor '<' is not defined for types
'Sysem.TimeSpan ' and System.TimeSpan '
TIA
Russ
public TimeSpan Timeout
{
get { return timeout; }
set
{
timeout = value;
if(timeout < licenseTimeout)
licenseTimeout = timeout;
}
}
private TimeSpan timeout = TimeSpan.FromMi nutes(10);
Convert to VB.NET when in VB.NET Opertor '<' is not defined for types
'Sysem.TimeSpan ' and System.TimeSpan '
TIA
Russ
Comment