Martin Clarke

1,372
reputation
212 views

Registered User

name Martin Clarke
member for 1 year
seen 3 hours ago
website
location UK
age 29
I work in the finance sector.
Dec
8
comment Credit Card Validation Resource for UK merchant
Well done on that BIN table. Exactly what I've been looking for.
Nov
24
accepted Keep ASP .NET page from logging out
Nov
13
comment int.TryParse = null if not numeric?
This solution might benefit from being turned into an extension method.
Nov
12
revised Multiline String Literal in C#
added 26 characters in body
Nov
11
answered Keep ASP .NET page from logging out
Nov
10
comment Web Server slows down (ASP.NET)
might be worth asking on/moving to serverfault
Nov
10
answered Objective-C and Windows
Nov
10
answered Web Server slows down (ASP.NET)
Nov
6
awarded  Popular Question
Nov
4
revised Adding ASP.NET control to page using jQuery
added 136 characters in body
Nov
4
answered Adding ASP.NET control to page using jQuery
Nov
4
answered Repeat Forever a If Function
Nov
4
comment Tracing the SOAP envelope that is being sent by a .NET web service client possible?
+1 for the SoapExtension, used that successfully too. OP didn't mention if it was web/windows client. If web, then I don't believe the SoapExtenstion code in the link is websafe.
Nov
2
comment Is there a problem with mono ?
Disbanded?? But mono is so infectious!
Oct
29
awarded  Good Question
Oct
21
comment Which serializer is most forgiving for changes to the serialized types in .NET?
Yes, this is precisely is the reason that ISerializable exists - so you can deal with previous formats.
Oct
13
answered How to return a type from an anonymous method/delegate
Oct
12
awarded  Citizen Patrol
Oct
12
answered CSS micro-optimization
Oct
7
answered How do you convince upper management that something can’t be done?
Oct
2
comment User Defined XML Serialization
Would just add that if you're trying to meet a particular schema, you can use xsd.exe to create classes that conform to that schema. See: msdn.microsoft.com/en-us/library/…
Sep
24
answered Multiline String Literal in C#
Aug
27
answered What is the Best Way to Clean a URL with a Title in it
Aug
25
awarded  Nice Answer
Aug
24
accepted prolog to SQL converter.
Aug
23
awarded  Yearling
Aug
20
comment how to develop VOIP application for iphone
I don't really think this is at an appropriate level of detail...
Aug
19
awarded  Favorite Question
Jul
31
awarded  Great Answer
Jul
30
comment How do I get started with developing for Android without an Android phone?
@Liam Gulliver - Depends on your background, but it has a gentler learning curve than the iPhone. iPhone you need to get a handle on some memory management stuff while with Android it's GC'd.
Jul
29
answered Violating the Rules of Web Development
Jul
21
answered Which is more advantageous: Learning new languages or increasing knowledge of ones you already know?
Jul
17
revised change language
edited tags
Jul
6
awarded  Notable Question
Jul
5
comment Datatable vs Dataset
AFAIK one big one was that a DataTable couldn't be serialized and couldn't be returned as a result from a WebService.
Jul
5
answered What’s better: DataSet or DataReader ?
Jun
26
comment How can I set an HTTP Proxy (WebProxy) on a WCF client-side Service proxy?
Thanks for the link Cheeso. I'll give it a whirl when I'm back in the office on Moday :)
Jun
26
answered How can I set an HTTP Proxy (WebProxy) on a WCF client-side Service proxy?
Jun
26
awarded  
Jun
21
comment Common programming mistakes for .NET developers to avoid?
+1 the right way to do casting in c#
Jun
21
comment Common programming mistakes for .NET developers to avoid?
-1. You need to consider the situations that you're casting in. You will not always want to throw an exception when a 'cast' doesn't work. Effective C# goes into this in some detail. The way to use 'as' here is to use the fact you can examine tree to see if it is null or not: Tree tree = obj as Tree; if (tree != null) {tree.GrowBranch();} else {//whatever}. This gives you more control than relying on catching exceptions.