Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

21
votes
8answers
2k views

What is better: int.TryParse or try { int.Parse() } catch

I know.. I know... Performance is not the main concern here, but just for curiosity, what is better? bool parsed = int.TryParse(string, out num); if (parsed) ... OR try { int.Parse(string); } ...
19
votes
10answers
3k views

Generic TryParse

I am trying to create a generic extension that uses 'TryParse' to check if a string is a given type: public static bool Is<T>(this string input) { T notUsed; return T.TryParse(input, ...
18
votes
7answers
5k views

Is there a GUID.TryParse() in .NET 3.5?

UPDATE Guid.TryParse is available in .NET 4.0 END UPDATE Obviously there is no public GUID.TryParse() in .NET CLR 2.0. So, I was looking into regular expressions [aka googling around to find one] ...
17
votes
6answers
6k views

Parse v. TryParse

What is the difference between parse and TryParse? int number = int.Parse(textBoxNumber.Text); // The Try-Parse Method int.TryParse(textBoxNumber.Text, out number); Is there some form of ...
17
votes
11answers
15k views

How do you test your Request.QueryString[] variables?

I frequently make use of Request.QueryString[] variables. In my Page_load I often do things like: int id = -1; if (Request.QueryString["id"] != null) { try { ...
11
votes
6answers
14k views

Integer.TryParse - a better way?

I find myself often needing to use Integer.TryParse to test if a value is an integer. However, when you use TryParse, you have to pass a reference variable to the function, so I find myself always ...
8
votes
8answers
657 views

Best (safest) way to convert from double to int

I'm curious as to the best way to convert a double to an int. Runtime safety is my primary concern here (it doesn't necessarily have to be the fastest method, but that would be my secondary concern). ...
7
votes
4answers
512 views

pros and cons of TryCatch versus TryParse

What are the pros and cons of using either of the following approaches to pulling out a double from an object? Beyond just personal preferences, issues I'm looking for feedback on include ease of ...
5
votes
1answer
134 views

Enum.TryParse returns true for any numeric values

I'm running into a behavior I wasn't expecting when using Enum.TryParse. If I have an enum: public enum MyEnum { ValueA, ValueB, ValueC } And then I pass a numeric value (as a string) into ...
4
votes
4answers
216 views

DateTime.TryParse() in Python?

Is there an equivalent to C#'s DateTime.TryParse() in Python? Edit: I'm referring to the fact that it avoids throwing an exception, not the fact that it guesses the format.
4
votes
5answers
641 views

DateTime.TryParseExact not working as expected

Can anyone explain why the following snippet returns true? According to the docs for The "d" custom format specifier, "A single-digit day is formatted without a leading zero." So why doesn't ...
4
votes
5answers
3k views

DateTime.TryParse issue with dates of yyyy-dd-MM format

I have the following date in string format "2011-29-01 12:00 am" . Now I am trying to convert that to datetime format with the following code: DateTime.TryParse(dateTime, out dt); But I am alwayws ...
4
votes
4answers
2k views

DateTime.TryParse century control C#

The result of the following snippet is "12/06/1930 12:00:00". How do I control the implied century so that "12 Jun 30" becomes 2030 instead? string dateString = "12 Jun 30"; //from user input ...
3
votes
2answers
144 views

TryParse to a nullable type

I would like to try to parse a string as a DateTime?, and if it fails then set the value to null. The only way I can think to do this is the following, but it doesn't seem very neat. DateTime temp; ...
3
votes
2answers
191 views

Regex for date

What should be the regex for matching date of any format like 26FEB2009 30 Jul 2009 27 Mar 2008 29/05/2008 27 Aug 2009 What should be the regular expression for that ? I have regex that ...
3
votes
3answers
793 views

Using TryParse for Setting Object Property Values

I'm currently refactoring code to replace Convert.To's to TryParse. I've come across the following bit of code which is creating and assigning a property to an object. List<Person> list = new ...
2
votes
5answers
210 views

C# error CS0165: Use of unassigned local variable - ignoring logic and out reference

After searching around I cant seem to locate why the C# compiler is complaining that the local variable dteDest is unassigned in the line if (dteSrc == dteDest) { The error goes away if I replace ...
2
votes
2answers
129 views

Using TryParse with a double shows an overload error?

i was writing a program and using double.Try Parse to check if a string is numeric. class Game{ // declares the class private static string[,] board = new string[3, 3]{ ...
2
votes
2answers
249 views

DateTime.TryParse converts decimal to datetime

The following line of code return true (which it should not)....and convert 1.0228 into datetime... DateTime.TryParse(1.0228,out temporaryDateTimeValue) Somebody please help me.
2
votes
5answers
2k views

A property or indexer may not be passed as an out or ref parameter

I am getting the above error and unable to resolve it. I googled a bit but cant get rid of it. Scenerio : I have class BudgetAllocate whose property is budget which is of double type. In my ...
2
votes
1answer
238 views

Using TryGetValue() in LINQ?

This code works, but is inefficient because it double-lookups the ignored dictionary. How can I use the dictionary TryGetValue() method in the LINQ statement to make it more efficient? ...
2
votes
4answers
885 views

UInt32.TryParse() hex-number not working

For some reason the following C# Console program always outputs: 32 False wtf=0 What am I doing wrong? using System.Collections.Generic; using System.Linq; using System.Text; using ...
2
votes
3answers
958 views

Enum.TryParse with Flags attribute

I have written code to TryParse enum either by value or by its name as shown below. How can I extend this code to include parsing enums with Flags attribute? public static bool ...
2
votes
2answers
262 views

Does VBScript have a DateTime.TryParse equivalent?

Given a variant, does VBScript have an equivalent of C#'s DateTime.TryParse method?
2
votes
4answers
4k views

Int32.TryParse() or (int?)command.ExecuteScalar()

I have a SQL query which returns only one field - an ID of type INT. And I have to use it as integer in C# code. Which way is faster and uses less memory? int id; ...
2
votes
6answers
96 views

What should the out value be set to with an unsuccessfull TryXX() method?

I'm implementing a TryParse(string s, Out object result) method. If the parse fails, I would like not to touch the out parameter so any previous result will remain intact. But VS2k8 won't let me. I ...
1
vote
2answers
126 views

C# Input Validation Check for positive numbers

I am learning C# and stuck on a problem where I have to check if the user input a VALID currency amount. i.e. no alphabetical character and no negative numbers. So far I have everything in the ...
1
vote
3answers
339 views

Regex vs Tryparse what is the best in performance

In my ASP.net project I need to validate some basic data types for user inputs. the data types are like numeric, decimal, datetime ect. What is the best approach that I should have taken in terms ...
1
vote
3answers
99 views

Can I change Int.TryParse to return -1 instead of zero on an unsuccessful parsing?

Can I chagne Int.TryParse to return a custom number (like -1) instead of zero on an unsuccessful parsing?
1
vote
5answers
457 views

C# TryParse failing with negative numbers

I'm having a problem getting TryParse to work correctly for me. I have a list of values that I am almost assured are valid (as they come from another component in our system) but I would like to make ...
1
vote
4answers
122 views

Does Int32.TryParse(String, Int32) alter the int argument on failure?

Out of interest, is it safe to assume that if Int32.TryParse(String, Int32) fails, then the int argument will remain unchanged? For example, if I want my integer to have a default value, which would ...
1
vote
4answers
238 views

Enum.TryParse not supporting in vs2008 in c#

Enum.TryParse(,,out) not supporting in vs2008 in c#? why? I am trying to use but getting error that TryParse no defined.
1
vote
1answer
337 views

Why does IPAddress.TryParse allow anything after a ']'

I'd like to use System.Net.IPAddress.TryParse to validate IPv6 addresses because I don't want to write my own reg exp :-) However, this seems to allow strings such as ...
1
vote
3answers
202 views

Data Validation for Random varying Phone Numbers

I am storing phone numbers of varying lengths in my WPF (C#, VS 08) App. I store them as strings. My question is about my method AddNewPhoneNo(string phoneNo). In this method, I use Int.TryParse to ...
1
vote
7answers
4k views

int.TryParse = null if not numeric?

is there some way of return null if it can't parse a string to int? with: public .... , string? categoryID) { int.TryParse(categoryID, out categoryID); getting "cannot convert from 'out string' ...
0
votes
1answer
10 views

use TryParseExact to format an integer value as a time

I have an integer that will have the value of a year month and day for example 20110504 i m using tryPareseExact to format it into yyyy-MM-dd but it is not working here is my function public ...
0
votes
1answer
135 views

C# get excel data in exponential format

Excel had controlled over the formatting as explained under here In my sample data (alphanumeric) in excel: - P000213590-A 312700133751-- > display as 3.127E+11 In my sample code: - DataTable dt ...
0
votes
2answers
212 views

'string' does not contain a definition for 'TryParse'

Having a little trouble working this one out, I'm wanting to store up to 50 movies in an array in order and allow them to be deleted/searched by users. However it's giving me errors saying that the ...
0
votes
1answer
80 views

Update button causing lost data!

The following code at seemingly random times prompts the message for tryparse and then updates my data with either empty or null values. This can occur with data input into the totaltaxtextbox and ...
0
votes
5answers
107 views

Failed to use SUBSTRING in TryParse

I found an error in my code, where the subtring is not work, it says "startIndex cannot be larger than the length of string" static int MyIntegerParse(string possibleInt) { int i; ...
0
votes
4answers
2k views

Converting exponential number to decimal 1.11111117E+9 - trailing digits become zero

I'm trying to convert and exponential number 1.11111117E+9 which is actually a 10 digit number '1111111111'. When I'm trying to convert this exponential number using decimal.TryParse method it is ...
0
votes
2answers
53 views

Cascading parse

I may have the following types: Number with decimal : 100.90 Number (int32) : 32 String : "" What I want is a function which tries to parse as a decimal and if it fails, then tries to parse as an ...
0
votes
1answer
430 views

Objective C try parse boolean

I would like to know how, in Objective-C, how to tell if a string represents a boolean value. The [string boolValue] method will not work, because when I try to parse a string like [@"ERROR" ...
0
votes
1answer
1k views

How to (try)parse a single String to DateTime in “DD/MM/YYYY” format? (VB.Net)

How to (try)parse a single String to DateTime in "DD/MM/YYYY" format? (VB.Net) For example: I use input string "30/12/1999" (30 December 1999), how to (try)parse it to DateTime?
0
votes
6answers
1k views

Is this value a valid year C#

What's the best way to check if a string is a valid year using C#? I currently have a dropdown list that contains the values {'All','2009','2008'} etc, and I want to know whether the selection is one ...
0
votes
1answer
46 views

MembershipUser.TryParse()

Anyone know an equiv? Currently I'm doing.. Dim myUsers As New MembershipUserCollection Dim myUser As MembershipUser Dim RoleUsers() As String RoleUsers = Roles.GetUsersInRole("User") For Each x ...
0
votes
2answers
259 views

VB.NET Double Question

Currently I have a Double which looks like 12.53467345 .. Now I would like to remove the numbers after the dot so i just get "12" , how could i do this? I guess with TryParse, but don't really ...
0
votes
1answer
331 views

Using TypeDescriptor in place of TryParse

I am trying to replicate TryParse for generic types and thought that TypeDescriptor might give me what I am after. So I came up with the following test case but it is failing, just wondering if anyone ...
0
votes
3answers
845 views

Why DateTime.TryParse returning false when given a real year string?

In the code below I am giving the function a sTransactionDate="1999" and I am trying to covert it to a date x/x/1999. DateTime dTransactionDate = new DateTime(); ...
0
votes
2answers
157 views

Safe element of array access

What is the safe method to access an array element, without throwing IndexOutOfRangeException, something like TryParse, TryRead, using extension methods or LINQ?