Die Verwendung von SafeConvert und die Verwendung von try{} Catch{} in C#2.0
:
/// <Zusammenfassung>
///
/// </summary>
/// <param name="s"></param>
/// <param name="defaultValue"></param>
/// <returns></returns>
öffentliches statisches Double ToDouble( string s, double defaultValue )
{
doppeltes Ergebnis;
bool success = double.TryParse( s, out result );
Erfolg zurückgeben? Ergebnis: Standardwert;
}
完整的类可在