10
votes
10answers
2k 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
{
…
4
votes
7answers
194 views
GUID.TryParse() ?
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] and each time I found one there was a heated argument in the …
2
votes
3answers
77 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
…
2
votes
6answers
66 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 …
2
votes
6answers
2k 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 …
1
vote
4answers
589 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;
…
0
votes
7answers
197 views
int.TryParse = null if not numeric?
Hello
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 …
0
votes
1answer
34 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
92 views
VB.NET Double Question
Hello
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
102 views
Using TypeDescriptor in place of TryParse
Hi Guys
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 …
0
votes
3answers
294 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
94 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?
