// This example demonstrates overloads of the TryParse method for // several base types, and the TryParseExact method for DateTime. // In most cases, this example uses the most complex overload; that is, the overload // with the most parameters for a particular type. If a complex overload specifies // null (Nothing in Visual Basic) for the IFormatProvider parameter, formatting // information is obtained from the culture associated with the current thread. // If a complex overload specifies the style parameter, the parameter value is // the default value used by the equivalent simple overload. using System; using System.Globalization; class Sample { public static void Main() { bool result; CultureInfo ci; string nl = Environment.NewLine; string msg1 = "This example demonstrates overloads of the TryParse method for{0}" + "several base types, as well as the TryParseExact method for DateTime.{0}"; string msg2 = "Non-numeric types:{0}"; string msg3 = "{0}Numeric types:{0}"; string msg4 = "{0}The following types are not CLS-compliant:{0}"; // Non-numeric types. Boolean booleanVal; Char charVal; DateTime datetimeVal; // Numeric types. Byte byteVal; Int16 int16Val; Int32 int32Val; Int64 int64Val; Decimal decimalVal; Single singleVal; Double doubleVal; // The following types are not CLS-compliant. SByte sbyteVal; UInt16 uint16Val; UInt32 uint32Val; UInt64 uint64Val; // Console.WriteLine(msg1, nl); // Non-numeric types: Console.WriteLine(msg2, nl); // DateTime // TryParse: // Assume current culture is en-US, and dates of the form: MMDDYYYY. result = DateTime.TryParse("7/4/2004 12:34:56", out datetimeVal); Show(result, "DateTime #1", datetimeVal.ToString()); // Use fr-FR culture, and dates of the form: DDMMYYYY. ci = new CultureInfo("fr-FR"); result = DateTime.TryParse("4/7/2004 12:34:56", ci, DateTimeStyles.None, out datetimeVal); Show(result, "DateTime #2", datetimeVal.ToString()); // TryParseExact: // Use fr-FR culture. The format, "G", is short date and long time. result = DateTime.TryParseExact("04/07/2004 12:34:56", "G", ci, DateTimeStyles.None, out datetimeVal); Show(result, "DateTime #3", datetimeVal.ToString()); // Assume en-US culture. string[] dateFormats = {"f", "F", "g", "G"}; result = DateTime.TryParseExact("7/4/2004 12:34:56 PM", dateFormats, null, DateTimeStyles.None, out datetimeVal); Show(result, "DateTime #4", datetimeVal.ToString()); Console.WriteLine(); // Boolean result = Boolean.TryParse("true", out booleanVal); Show(result, "Boolean", booleanVal.ToString()); // Char result = Char.TryParse("A", out charVal); Show(result, "Char", charVal.ToString()); // Numeric types: Console.WriteLine(msg3, nl); // Byte result = Byte.TryParse("1", NumberStyles.Integer, null, out byteVal); Show(result, "Byte", byteVal.ToString()); // Int16 result = Int16.TryParse("-2", NumberStyles.Integer, null, out int16Val); Show(result, "Int16", int16Val.ToString()); // Int32 result = Int32.TryParse("3", NumberStyles.Integer, null, out int32Val); Show(result, "Int32", int32Val.ToString()); // Int64 result = Int64.TryParse("4", NumberStyles.Integer, null, out int64Val); Show(result, "Int64", int64Val.ToString()); // Decimal result = Decimal.TryParse("-5.5", NumberStyles.Number, null, out decimalVal); Show(result, "Decimal", decimalVal.ToString()); // Single result = Single.TryParse("6.6", (NumberStyles.Float | NumberStyles.AllowThousands), null, out singleVal); Show(result, "Single", singleVal.ToString()); // Double result = Double.TryParse("-7", (NumberStyles.Float | NumberStyles.AllowThousands), null, out doubleVal); Show(result, "Double", doubleVal.ToString()); // Use the simple Double.TryParse overload, but specify an invalid value. result = Double.TryParse("abc", out doubleVal); Show(result, "Double #2", doubleVal.ToString()); // Console.WriteLine(msg4, nl); // SByte result = SByte.TryParse("-8", NumberStyles.Integer, null, out sbyteVal); Show(result, "SByte", sbyteVal.ToString()); // UInt16 result = UInt16.TryParse("9", NumberStyles.Integer, null, out uint16Val); Show(result, "UInt16", uint16Val.ToString()); // UInt32 result = UInt32.TryParse("10", NumberStyles.Integer, null, out uint32Val); Show(result, "UInt32", uint32Val.ToString()); // UInt64 result = UInt64.TryParse("11", NumberStyles.Integer, null, out uint64Val); Show(result, "UInt64", uint64Val.ToString()); } protected static void Show(bool parseResult, string typeName, string parseValue) { string msgSuccess = "Parse for {0} = {1}"; string msgFailure = "** Parse for {0} failed. Invalid input."; // if (parseResult == true) Console.WriteLine(msgSuccess, typeName, parseValue); else Console.WriteLine(msgFailure, typeName); } } /* This example produces the following results: This example demonstrates overloads of the TryParse method for several base types, as well as the TryParseExact method for DateTime. Non-numeric types: Parse for DateTime #1 = 7/4/2004 12:34:56 PM Parse for DateTime #2 = 7/4/2004 12:34:56 PM Parse for DateTime #3 = 7/4/2004 12:34:56 PM Parse for DateTime #4 = 7/4/2004 12:34:56 PM Parse for Boolean = True Parse for Char = A Numeric types: Parse for Byte = 1 Parse for Int16 = -2 Parse for Int32 = 3 Parse for Int64 = 4 Parse for Decimal = -5.5 Parse for Single = 6.6 Parse for Double = -7 ** Parse for Double #2 failed. Invalid input. The following types are not CLS-compliant: Parse for SByte = -8 Parse for UInt16 = 9 Parse for UInt32 = 10 Parse for UInt64 = 11 */ ---------- //----------------------------------------------------------------------- // This file is part of the Microsoft .NET SDK Code Samples. // // Copyright (C) Microsoft Corporation. All rights reserved. // //This source code is intended only as a supplement to Microsoft //Development Tools and/or on-line documentation. See these other //materials for detailed information regarding Microsoft code samples. // //THIS CODE AND INFORMATION ARE PROVIDED AS IS WITHOUT WARRANTY OF ANY //KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE //IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A //PARTICULAR PURPOSE. //----------------------------------------------------------------------- using System; using System.Runtime.InteropServices; using System.Globalization; using System.Diagnostics; using System.Drawing; using System.Collections; using System.Collections.Specialized; using System.ComponentModel; using System.Windows.Forms; using System.Data; namespace Microsoft.Samples { public partial class FormMain : System.Windows.Forms.Form { private StringCollection str; private string[] types = new string[4]; private Stopwatch sw = new Stopwatch(); private long parseTime; private long tryParseTime; private System.ComponentModel.IContainer components = null; public FormMain() { InitializeComponent(); } private void buttonGo_Click(object sender, System.EventArgs e) { Cursor = Cursors.WaitCursor; FillList(); labelTryParseResultValue.Text = ""; labelParseResultValue.Text = ""; PerformTryParse(); PerformParse(); if (tryParseTime >= 0 && parseTime >= 0) { if (parseTime / tryParseTime < 5) { labelParseResultValue.ForeColor = Color.DarkGreen; } else if (parseTime / tryParseTime < 15) { labelParseResultValue.ForeColor = Color.Purple; } else if (parseTime / tryParseTime < 35) { labelParseResultValue.ForeColor = Color.DarkRed; } else { labelParseResultValue.ForeColor = Color.Red; } } else { labelTryParseResultValue.ForeColor = Color.Black; } if (parseTime > 0) { Double result =(Convert.ToDouble(parseTime) / tryParseTime) - 1; if (result < 0.1 && result > -0.1) { //an arbitrary pick, but this means they're roughly the same labelPercentResult.Visible = false; labelPercentResultValue.Visible = false; } else { if (result > 0) { labelPercentResult.Text = "Faster!"; labelPercentResult.ForeColor = Color.Black; } else { labelPercentResult.ForeColor = Color.Red; labelPercentResult.Text = "Slower"; result = Math.Abs(result); } labelPercentResult.Visible = true; labelPercentResultValue.Visible = true; } labelPercentResultValue.Text = String.Format(CultureInfo.CurrentCulture, "{0:N2} X", result); } else { labelPercentResult.Visible = false; labelPercentResultValue.Visible = false; } Cursor = Cursors.Arrow; } private void PerformParse() { switch (comboType.SelectedIndex) { case 0: Int32ParseRoutine(); break; case 1: DecimalParseRoutine(); break; case 2: DoubleParseRoutine(); break; case 3: DateTimeParseRoutine(); break; } //parseTime = sw.ElapsedMilliseconds parseTime = sw.ElapsedTicks; labelParseResultValue.Text = parseTime + " ticks"; } private void PerformTryParse() { switch (comboType.SelectedIndex) { case 0: Int32TryParseRoutine(); break; case 1: DecimalTryParseRoutine(); break; case 2: DoubleTryParseRoutine(); break; case 3: DateTimeTryParseRoutine(); break; } //tryParseTime = sw.ElapsedMilliseconds tryParseTime = sw.ElapsedTicks; labelTryParseResultValue.Text = tryParseTime + " ticks"; } private void Int32ParseRoutine() { int i; sw = Stopwatch.StartNew(); for (int j = 1; j <= numericIterations.Value; j++) { foreach (string s in str) { try { i = Int32.Parse(s, NumberStyles.Any, CultureInfo.InvariantCulture); // print successful } catch (FormatException) { // print unsuccessful } } } sw.Stop(); } private void Int32TryParseRoutine() { int i; sw = Stopwatch.StartNew(); for (int j = 1; j <= numericIterations.Value; j++) { foreach (string s in str) { if (Int32.TryParse(s, NumberStyles.Any, CultureInfo.InvariantCulture, out i)) { // print successful } else { // print unsuccessful } } } sw.Stop(); } private void DecimalParseRoutine() { Decimal d; sw = Stopwatch.StartNew(); for (int j = 1; j <= numericIterations.Value; j++) { foreach (string s in str) { try { d = Decimal.Parse(s, NumberStyles.Any, CultureInfo.InvariantCulture); // print successful } catch (FormatException) { // print unsuccessful } } } sw.Stop(); } private void DecimalTryParseRoutine() { Decimal d; sw = Stopwatch.StartNew(); for (int j = 1; j <= numericIterations.Value; j++) { foreach (string s in str) { if (Decimal.TryParse(s, NumberStyles.Any, CultureInfo.InvariantCulture, out d)) { // print successful } else { // print unsuccessful } } } sw.Stop(); } private void DoubleParseRoutine() { Double d; sw = Stopwatch.StartNew(); for (int j = 1; j <= numericIterations.Value; j++) { foreach (string s in str) { try { d = Double.Parse(s, NumberStyles.Any, CultureInfo.InvariantCulture); // print successful } catch (FormatException) { // print unsuccessful } } } sw.Stop(); } private void DoubleTryParseRoutine() { Double d; sw = Stopwatch.StartNew(); for (int j = 1; j <= numericIterations.Value; j++) { foreach (string s in str) { if (Double.TryParse(s, NumberStyles.Any, CultureInfo.InvariantCulture, out d)) { // print successful } else { // print unsuccessful } } } sw.Stop(); } private void DateTimeParseRoutine() { DateTime d; sw = Stopwatch.StartNew(); for (int j = 1; j <= numericIterations.Value; j++) { foreach (string s in str) { try { d = DateTime.Parse(s, CultureInfo.InvariantCulture, DateTimeStyles.None); // print successful } catch (FormatException) { // print unsuccessful } } } sw.Stop(); } private void DateTimeTryParseRoutine() { DateTime d; sw = Stopwatch.StartNew(); for (int j = 1; j <= numericIterations.Value; j++) { foreach (string s in str) { if (DateTime.TryParse(s, CultureInfo.InvariantCulture, DateTimeStyles.None, out d)) { // print successful } else { // print unsuccessful } } } sw.Stop(); } private void FillList() { if (comboType.SelectedIndex != 3 ) { NumberFill(); } else { DateTimeFill(); } Random r = new Random(Environment.TickCount); for (int i = 1; i <= (100 - numericPercent.Value); i++) { int length = r.Next(4, 9); string s = ""; for (int j = 1; j <= length; j++) { s = s + Convert.ToChar(r.Next(97, 123)); } str.Add(s); } } private void NumberFill() { Random r = new Random(Environment.TickCount); str = new StringCollection(); for (int i = 1; i <= numericPercent.Value; i++) { str.Add((r.Next(1, 1000)).ToString(CultureInfo.InvariantCulture)); } } private void DateTimeFill() { Random r = new Random(); str = new StringCollection(); for (int i = 1; i <= numericPercent.Value; i++) { str.Add(DateTime.Now.ToString(CultureInfo.InvariantCulture)); } } private void FormMain_Load(object sender, System.EventArgs e) { labelDesc.Text = "This demo makes 100 strings, of which" + Environment.NewLine + "the 'percentage' value determines how many" + Environment.NewLine + "can be validly parsed to the specified type. " + Environment.NewLine + "The 'iterations' value determines how many " + Environment.NewLine + "times the strings are parsed"; types[0] = "Int32"; types[1] = "Decimal"; types[2] = "Double"; types[3] = "DateTime"; foreach(string s in types) { comboType.Items.Add(s); } comboType.SelectedIndex = 0; } private void buttonExit_Click(object sender, System.EventArgs e) { this.Close(); } private void buttonHelp_Click(object sender, System.EventArgs e) { FormHelp fh = new FormHelp(); fh.Show(); } } }