User Martin Clarke - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T12:29:19Zhttp://stackoverflow.com/feeds/user/2422http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1100260/multiline-string-literal-in-c/1470637#14706371Answer by Martin Clarke for Multiline String Literal in C#Martin Clarke2009-09-24T09:28:46Z2009-11-12T16:32:36Z<p>One other gotcha to watch for is the use of string literals in string.Format. In that case you need to escape curly braces/brackets '{' and '}'. </p>
<pre><code>// this would give a format exception
string.Format(@"<script> function test(x)
{ return x * {0} } </script>", aMagicValue)
// this contrived example would work
string.Format(@"<script> function test(x)
{{ return x * {0} }} </script>", aMagicValue)
</code></pre>
http://stackoverflow.com/questions/1718470/keep-asp-net-page-from-logging-out/1718549#17185491Answer by Martin Clarke for Keep ASP .NET page from logging outMartin Clarke2009-11-11T22:32:55Z2009-11-11T22:32:55Z<p>Assuming David's link isn't able to help - it might be worth considering if the user could be knowingly (or unknowingly) clearing their cookies. Also, I'd consider if there could be any time changes taking place on the client.</p>
http://stackoverflow.com/questions/1709914/objective-c-and-windows/1709949#1709949-2Answer by Martin Clarke for Objective-C and WindowsMartin Clarke2009-11-10T18:01:53Z2009-11-10T18:01:53Z<p>How about a <a href="http://en.wikipedia.org/wiki/OSx86" rel="nofollow">Hackintosh</a>?</p>
http://stackoverflow.com/questions/1709868/web-server-slows-down-asp-net/1709928#17099280Answer by Martin Clarke for Web Server slows down (ASP.NET)Martin Clarke2009-11-10T17:59:50Z2009-11-10T17:59:50Z<p>You might want to check how many threads your using in the ASP.NET thread pool when the timeouts occur. Another idea might be to look at the GC information in perfmon and see if the GC is running a gen2 collection?</p>
http://stackoverflow.com/questions/1672503/adding-asp-net-control-to-page-using-jquery/1676213#16762131Answer by Martin Clarke for Adding ASP.NET control to page using jQueryMartin Clarke2009-11-04T19:57:35Z2009-11-04T20:04:37Z<p>I'm not sure what version of ASP.NET you're using, one approach that would work is to turn your usercontrol into a <a href="http://msdn.microsoft.com/en-us/library/yhzc935f.aspx" rel="nofollow">custom control</a>. You'd then need to implement ICallbackEventHandler (the first way to do Ajax on asp.net); for sure it's a bit more work but it does give you a good level of control.</p>
<p>Alternatively, you could try <a href="http://encosia.com/2008/05/29/using-jquery-to-directly-call-aspnet-ajax-page-methods/" rel="nofollow">this</a></p>
http://stackoverflow.com/questions/1670992/repeat-forever-a-if-function/1671004#16710042Answer by Martin Clarke for Repeat Forever a If FunctionMartin Clarke2009-11-04T00:18:51Z2009-11-04T00:18:51Z<p>I don't think your question is really clear. But here is an attempt :)</p>
<pre><code>while (true) {
if (i ==j ) {
// whatever
}
}
</code></pre>
http://stackoverflow.com/questions/35431/what-is-the-best-book-for-learning-objective-c4What is the best book for learning objective-c?Martin Clarke2008-08-29T22:47:40Z2009-10-13T19:02:20Z
<p>What is the best book or resource for learning objective-c for someone from a predominantly C#/Java background and not having touched C for 7 years?</p>
http://stackoverflow.com/questions/1558722/how-to-return-a-type-from-an-anonymous-method-delegate/1558775#15587750Answer by Martin Clarke for How to return a type from an anonymous method/delegateMartin Clarke2009-10-13T07:55:32Z2009-10-13T07:55:32Z<p>It is a little unclear how you're going to use this - since the example you've posted is trivial, I have to ask ts there any particular reason it needs to be an anonymous method? Couldn't it just be a regular instance method instead?</p>
http://stackoverflow.com/questions/1553026/css-micro-optimization/1553166#15531660Answer by Martin Clarke for CSS micro-optimizationMartin Clarke2009-10-12T07:23:38Z2009-10-12T07:23:38Z<p>Sounds like this is a lot of trouble, you're time might be best spent elsewhere if you're trying to get better performance. Are you aware of Steve Souders work on High Performance Websites? <a href="http://stevesouders.com/hpws/" rel="nofollow">http://stevesouders.com/hpws/</a></p>
http://stackoverflow.com/questions/1530725/how-do-you-convince-upper-management-that-something-cant-be-done/1530780#15307800Answer by Martin Clarke for How do you convince upper management that something can’t be done?Martin Clarke2009-10-07T10:30:49Z2009-10-07T10:30:49Z<p>"I need this working like a charm before X date. Period!" could be dealt with the following framework. I understand having X ready by Y is important to you, but unfortunately we won't be able to meet this request. What I can offer you is a subset of X by Z.</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/61545#61545131Answer by Martin Clarke for Hidden Features of JavaScript?Martin Clarke2008-09-14T18:44:34Z2009-09-22T20:27:32Z<p>I could quote most of Douglas Crockford's excellent book
<a href="http://rads.stackoverflow.com/amzn/click/0596517742" rel="nofollow">JavaScript: The Good Parts</a>.</p>
<p><img src="http://ecx.images-amazon.com/images/I/41FUMOfYQoL.%5FBO2,204,203,200%5FPIsitb-sticker-arrow-click,TopRight,35,-76%5FAA240%5FSH20%5FOU01%5F.jpg" alt="alt text" /></p>
<p>But I'll take just one for you, always use === and !== instead of == and !=</p>
<pre><code>alert('' == '0'); //false
alert(0 == ''); // true
alert(0 =='0'); // true
</code></pre>
<p>== is not transitive. If you use === it would give false for
all of these statements as expected.</p>
http://stackoverflow.com/questions/1342775/what-is-the-best-way-to-clean-a-url-with-a-title-in-it/1342794#13427940Answer by Martin Clarke for What is the Best Way to Clean a URL with a Title in itMartin Clarke2009-08-27T18:05:04Z2009-08-27T18:05:04Z<ol>
<li>How do you define "friendly" URL - I'm assuming you mean to remove _'s etc.</li>
<li>I'd look into a regular expression here. </li>
</ol>
<p>If you want to persist with the method above, I would suggest moving to StringBuilder over a string. This is because each of your replace operations is creating a new string.</p>
http://stackoverflow.com/questions/1202511/violating-the-rules-of-web-development/1202527#12025271Answer by Martin Clarke for Violating the Rules of Web DevelopmentMartin Clarke2009-07-29T19:33:44Z2009-07-29T19:33:44Z<p>Well, have you actually tried to order it yet? It might validate the input on the back end. </p>
<p>As to other options, they could have considered either posting the information or putting the information in a cookie. Neither are exactly fool proof. You can't get a new window with a post and a user can turn cookies off.</p>
http://stackoverflow.com/questions/1137113/which-is-more-advantageous-learning-new-languages-or-increasing-knowledge-of-one/1160638#11606381Answer by Martin Clarke for Which is more advantageous: Learning new languages or increasing knowledge of ones you already know?Martin Clarke2009-07-21T17:41:01Z2009-07-21T17:41:01Z<p>If you're someone who isn't an expert in a particular technology, I would encourage you to consider gaining expertise in a technology.</p>
<p>If you've already got that expertise under your belt, I would consider broadening your technical skills. Another option you could consider is developing your softer skills.</p>
<p>I once read an excellent book called the Trusted Advisor, I think its quite relevant to the topic at hand and I would recommend to the questioner. The key thing about becoming someone that people trust is that you need to demonstrate expertise and competence in a area important to your clients/boss/potential bosses. </p>
http://stackoverflow.com/questions/1083193/whats-better-dataset-or-datareader/1083222#10832220Answer by Martin Clarke for What's better: DataSet or DataReader ?Martin Clarke2009-07-05T00:13:21Z2009-07-05T00:13:21Z<p>To answer your second question - Yes, you should learn about DataReaders. If anything, so you understand how to use them. </p>
<p>I think you're better of in this situation using DataSets - since you're doing data binding and all (I'm thinking CPU cycles vs Human effort).</p>
<p>As to which one will give a better performance. It very much depends on your situation. For example, if you're editing the data you're binding and batching up the changes then you will be better off with DataSets </p>
http://stackoverflow.com/questions/951523/how-can-i-set-an-http-proxy-webproxy-on-a-wcf-client-side-service-proxy/1047883#10478832Answer by Martin Clarke for How can I set an HTTP Proxy (WebProxy) on a WCF client-side Service proxy?Martin Clarke2009-06-26T07:57:45Z2009-06-26T07:57:45Z<p>I have had a similar problem, but I also needed to use a username and password for the proxy that differ from the username and password used to access the service.</p>
<p>I tried building it up through a UriBuilder, which would output the proxy address as "http://username:password@myproxyserver/". Unfortunately, the particular proxy I was using didn't work with this technique.</p>
<p>What I found after extensive Googling, is that you can change the proxy through WebRequest.DefaultProxy (static property). </p>
<p>For example:</p>
<pre><code>WebProxy proxy = new WebProxy("http://myproxyserver",true);
proxy.Credentials = new NetworkCredential("username", "password");
WebRequest.DefaultWebProxy = proxy;
</code></pre>
http://stackoverflow.com/questions/203069/what-is-the-best-css-framework-and-are-they-worth-the-effort28What is the best CSS Framework and are they worth the effort?Martin Clarke2008-10-14T22:17:26Z2009-06-09T23:09:10Z
<p>Reading on another forum I've came across the world of CSS Frameworks. The one I've been specifically looking at is <a href="http://www.blueprintcss.org/" rel="nofollow">BluePrint</a>. I was wondering if anyone else had come across CSS frameworks, comment on which is the best and if they are worth the effort?</p>
http://stackoverflow.com/questions/957467/what-is-a-better-way-to-implement-a-simple-database-select-update-program-in-vb6/957559#9575592Answer by Martin Clarke for What is a better way to implement a simple database select/update program in vb6?Martin Clarke2009-06-05T19:04:49Z2009-06-05T19:04:49Z<p>I would move to a newer technology stack; but hey if thats not possible... since it looks like you're already using ADO, you'd want to use disconnected recordsets. </p>
<p>In general what you want to do is open the recordset with a connection, set the recordsets connection to nothing. Edit the recordset (it can hang around for any length of time) then get a new connection and set the recordsets connection to it. Then you Update the batch.</p>
<p>This is a good starting point: <a href="http://www.devguru.com/features/tutorials/DisconnectedRecordsets/tutDisconnRS.asp" rel="nofollow">http://www.devguru.com/features/tutorials/DisconnectedRecordsets/tutDisconnRS.asp</a> </p>
<p>Edit: I'm pretty sure you can bind that recordset to a datagrid, but hey it's been a while :)</p>
http://stackoverflow.com/questions/728513/erratic-invalid-viewstate-issue-in-net-application/951796#9517961Answer by Martin Clarke for Erratic Invalid Viewstate issue in .net applicationMartin Clarke2009-06-04T16:53:32Z2009-06-04T16:53:32Z<p>Viewstate issues are annoying and frustrating - I've noticed a few people have talked about having Viewstate issues in this thread. So, here are some suggestions you can look at in order.</p>
<ol>
<li><p>I'd echo what Freddy Rios has said
in the thread already. Make sure
that you've hardcoded the machine
key. This will solve the vast
majority of these issues. The
important thing about the
ScriptResource link is that it
should have a d parameter and a t
parameter in the querystring. If it
doesn't something else is wrong!</p></li>
<li><p>Don't let the user postback until
your done. You could probably do
this with javascript and a bit of
css. From memory, I think there is a
way to do this with a meta tag but
it might be IE only. </p></li>
<li><p>I would look at is flushing the
response early. I would think after
the script manager would be best.
But you might need to experiment a
bit.</p></li>
<li><p>If your viewstate looks bloated,
turn on GZip compression on in IIS.</p></li>
<li><p>If your viewstate has became really
bloated and you can't get GZip
compression turned on/or it has an
undesired side affect. Then you can
compress and uncompress the
viewstate.
<a href="http://www.codeproject.com/KB/viewstate/ViewStateCompression.aspx" rel="nofollow">http://www.codeproject.com/KB/viewstate/ViewStateCompression.aspx</a></p></li>
<li><p>If that still leaves you with a
bloated viewstate, you could look at
storing the viewstate locally.
<a href="http://blog.arctus.co.uk/articles/2007/04/23/advanced-asp-net-storing-viewstate-in-a-database/" rel="nofollow">http://blog.arctus.co.uk/articles/2007/04/23/advanced-asp-net-storing-viewstate-in-a-database/</a>
is a good starting point.</p></li>
</ol>
http://stackoverflow.com/questions/932522/iphone-vs-android/947146#9471461Answer by Martin Clarke for IPhone vs AndroidMartin Clarke2009-06-03T20:47:44Z2009-06-03T20:47:44Z<p>As an Andriod owner - which I love btw, I've chosen to develop for the iPhone. I think it's a better market now and in the future for a couple of reasons.</p>
<p>The iPhone is a premium product. People who buy the iPhone are paying for it, so they tend to be quite wealthy. We've already seen proof that iPhone customers will pay for applications for their phone, economically they can afford it.</p>
<p>The G1 is a great device, but at the price points the G1 it isn't the same premium product. It's priced like normal phones so I'm unsure what the G1 user base actually looks like. In other words is it going to be full of people who are willing to experiment and purchase apps or are they going to be more cost-concious and less likely to spend money on apps?</p>
http://stackoverflow.com/questions/945984/how-to-tell-when-object-is-sent-release-message/946007#9460074Answer by Martin Clarke for How to tell when object is sent release message?Martin Clarke2009-06-03T17:25:18Z2009-06-03T20:33:54Z<p>I might not be thinking straight, but have you considered adding a release and dealloc onto your class</p>
<pre><code>- (void) release
{
NSLog(@"Releasing");
[super release];
}
- (void) dealloc
{
NSLog(@"Deallocating");
[super dealloc];
}
</code></pre>
<p>Incorporating Ben Gotow's comment to use an obj-c category, you end up with this:</p>
<pre><code>@interface NSString (release)
-(void) release;
@end
@implementation NSString (release)
-(void) release
{
NSLog(@"NSString Released!");
[super release];
}
@end
</code></pre>
http://stackoverflow.com/questions/917221/how-do-you-decide-on-a-salary-expectation-in-a-new-city-outside-the-us/917246#9172460Answer by Martin Clarke for How do you decide on a salary expectation in a new city outside the US?Martin Clarke2009-05-27T18:16:47Z2009-05-27T18:16:47Z<p>itjobswatch.co.uk for the UK is comprehensive by location and industry.</p>
http://stackoverflow.com/questions/914461/populating-a-textbox-from-a-text-file/914478#9144782Answer by Martin Clarke for Populating a TextBox from a text fileMartin Clarke2009-05-27T07:54:27Z2009-05-27T07:54:27Z<p>In your for loop, you are using c. You need to use x. Could I suggest that you have a look at the <a href="http://msdn.microsoft.com/en-us/library/ch45axte.aspx" rel="nofollow">reference for for</a>. </p>
<p>Try this instead...</p>
<pre><code>string[] msglines;
msglines = System.IO.File.ReadAllLines(@"C:\\Users\xA\Desktop\MESSAGES.txt");
for (int x = 0; x < msglines.Length; x++)
{
this.textBox5.Text = msglines[x];
}
</code></pre>
http://stackoverflow.com/questions/893908/what-should-come-first-the-design-pattern-or-the-code/894159#8941590Answer by Martin Clarke for What should come first -- the design pattern or the code?Martin Clarke2009-05-21T17:40:27Z2009-05-21T17:40:27Z<p>Good advice in here already. To answer the question about useful patterns other than the GoF book. There are, you should check out Larman's Applying UML and Patterns where he describes GRASP patterns. </p>
http://stackoverflow.com/questions/855133/coding-rules-of-thumb/855185#8551852Answer by Martin Clarke for Coding Rules of ThumbMartin Clarke2009-05-12T22:26:09Z2009-05-12T22:26:09Z<p>My rule: Don't apply rules blindly, the context is everything.</p>
http://stackoverflow.com/questions/847139/is-it-possible-to-create-a-deadlock-with-read-only-access/847144#847144-1Answer by Martin Clarke for Is it possible to create a deadlock with read-only access?Martin Clarke2009-05-11T08:03:36Z2009-05-11T08:03:36Z<p>Wouldn't it be something like this?</p>
<p><strong>Other Application</strong>: Write to table (acquire write lock on table)</p>
<p><strong>Your Application</strong>: Read from table (acquire read lock on table, can't due to write lock).</p>
http://stackoverflow.com/questions/842999/what-does-h-and-m-stand-for/843007#8430071Answer by Martin Clarke for What does .h and .m stand for?Martin Clarke2009-05-09T09:08:18Z2009-05-09T10:29:31Z<p>.h stands for header while .m stands for implementation</p>
http://stackoverflow.com/questions/765703/when-should-an-out-parameter-be-used-instead-of-returning-a-complex-type/765771#7657710Answer by Martin Clarke for When should an `out` parameter be used instead of returning a complex type?Martin Clarke2009-04-19T17:34:46Z2009-04-19T21:09:17Z<p>Out parameters are generally on the brittle side. Moving beyond the example, and looking at the problem in general: Bill Wagner's book "More Effective C#" describes quite a clever approach to this, it is also described in detail <a href="http://visualstudiomagazine.com/columns/article.aspx?editorialsid=2069" rel="nofollow">here</a>.</p>
<p>The following code would work in this instance.</p>
<pre><code>public class Tuple<T1,T2>
{
public T1 First {get;private set;}
public T2 Second {get; private set;}
Tuple(T1 first, T2 second)
{
First = first;
Second = second;
}
}
using ComplexPair = Tuple<bool,object>;
public class SomeOtherClass
{
public ComplexPair GetComplexType ()
{
...
return new ComplexPair(true, new object);
}
}
</code></pre>
http://stackoverflow.com/questions/755723/serialization-of-classes-containing-generics-with-backwards-compatibility/755865#7558650Answer by Martin Clarke for Serialization of classes containing generics with backwards compatibilityMartin Clarke2009-04-16T12:18:07Z2009-04-16T12:18:07Z<p>Yes, you'd need to implement ISerializable. </p>
<p>The key points are the following</p>
<ul>
<li>Implement GetObjectData(SerializationInfo info, StreamingContext context). Here you need to add key pairs into info object.</li>
<li>Implement serialization constructor MyClass(SerializationInfo info, StreamingContext context). Here you'd need to get the values from the info object.</li>
</ul>
http://stackoverflow.com/questions/750965/sending-event-from-a-page-to-its-master-page-in-asp-net/750981#7509810Answer by Martin Clarke for Sending Event from a Page to its Master Page in ASP.NETMartin Clarke2009-04-15T09:53:28Z2009-04-15T09:53:28Z<p>If the event happens on all content pages use Kirtan's BasePage solution. If a base page isn't appropriate, then within each page where the event happens add this when the page loads. </p>
<pre><code>thisPage.Event += (Page.Master as YourMasterPageClass).YourCustomEventHandler
</code></pre>
http://stackoverflow.com/questions/1341648/credit-card-validation-resource-for-uk-merchantComment by Martin Clarke on Credit Card Validation Resource for UK merchantMartin Clarke2009-12-08T13:34:18Z2009-12-08T13:34:18ZWell done on that BIN table. Exactly what I've been looking for. http://stackoverflow.com/questions/1729455/int-tryparse-null-if-not-numeric/1729493#1729493Comment by Martin Clarke on int.TryParse = null if not numeric?Martin Clarke2009-11-13T14:28:08Z2009-11-13T14:28:08ZThis solution might benefit from being turned into an extension method.http://stackoverflow.com/questions/1709868/web-server-slows-down-asp-net/1709928#1709928Comment by Martin Clarke on Web Server slows down (ASP.NET)Martin Clarke2009-11-10T20:47:43Z2009-11-10T20:47:43Zmight be worth asking on/moving to serverfaulthttp://stackoverflow.com/questions/1669513/tracing-the-soap-envelope-that-is-being-sent-by-a-net-web-service-client-possibl/1669803#1669803Comment by Martin Clarke on Tracing the SOAP envelope that is being sent by a .NET web service client possible?Martin Clarke2009-11-04T00:15:31Z2009-11-04T00:15:31Z+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.http://stackoverflow.com/questions/1662700/is-there-a-problem-with-monoComment by Martin Clarke on Is there a problem with mono ?Martin Clarke2009-11-02T17:53:26Z2009-11-02T17:53:26ZDisbanded?? But mono is so infectious!http://stackoverflow.com/questions/1602260/which-serializer-is-most-forgiving-for-changes-to-the-serialized-types-in-net/1602301#1602301Comment by Martin Clarke on Which serializer is most forgiving for changes to the serialized types in .NET?Martin Clarke2009-10-21T17:47:33Z2009-10-21T17:47:33ZYes, this is precisely is the reason that ISerializable exists - so you can deal with previous formats.http://stackoverflow.com/questions/1508029/user-defined-xml-serialization/1508039#1508039Comment by Martin Clarke on User Defined XML SerializationMartin Clarke2009-10-02T06:56:50Z2009-10-02T06:56:50ZWould 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: <a href="http://msdn.microsoft.com/en-us/library/x6c1kb0s(VS.71).aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a> http://stackoverflow.com/questions/1305581/how-to-develop-voip-application-for-iphoneComment by Martin Clarke on how to develop VOIP application for iphoneMartin Clarke2009-08-20T11:41:51Z2009-08-20T11:41:51ZI don't really think this is at an appropriate level of detail...http://stackoverflow.com/questions/1203303/how-do-i-get-started-with-developing-for-android-without-an-android-phone/1203322#1203322Comment by Martin Clarke on How do I get started with developing for Android without an Android phone?Martin Clarke2009-07-30T11:25:20Z2009-07-30T11:25:20Z@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.http://stackoverflow.com/questions/2250/datatable-vs-dataset/2254#2254Comment by Martin Clarke on Datatable vs DatasetMartin Clarke2009-07-05T00:17:55Z2009-07-05T00:17:55ZAFAIK one big one was that a DataTable couldn't be serialized and couldn't be returned as a result from a WebService.http://stackoverflow.com/questions/951523/how-can-i-set-an-http-proxy-webproxy-on-a-wcf-client-side-service-proxy/1047883#1047883Comment by Martin Clarke on How can I set an HTTP Proxy (WebProxy) on a WCF client-side Service proxy?Martin Clarke2009-06-26T19:48:30Z2009-06-26T19:48:30ZThanks for the link Cheeso. I'll give it a whirl when I'm back in the office on Moday :)http://stackoverflow.com/questions/380819/common-programming-mistakes-for-net-developers-to-avoid/383875#383875Comment by Martin Clarke on Common programming mistakes for .NET developers to avoid?Martin Clarke2009-06-21T09:09:21Z2009-06-21T09:09:21Z+1 the right way to do casting in c#http://stackoverflow.com/questions/380819/common-programming-mistakes-for-net-developers-to-avoid/380925#380925Comment by Martin Clarke on Common programming mistakes for .NET developers to avoid?Martin Clarke2009-06-21T09:01:45Z2009-06-21T09:01:45Z-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. http://stackoverflow.com/questions/957410/how-to-strip-out-robo-comments-and-region-from-c/957442#957442Comment by Martin Clarke on How to strip out robo-comments and #region from C#?Martin Clarke2009-06-05T18:54:13Z2009-06-05T18:54:13ZAgree in general, but in this context I don't think the XML comments are adding much. It really should say more about what its doing.http://stackoverflow.com/questions/945984/how-to-tell-when-object-is-sent-release-message/946007#946007Comment by Martin Clarke on How to tell when object is sent release message?Martin Clarke2009-06-03T20:17:25Z2009-06-03T20:17:25ZHow about subclassing NSString: <a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/Classes/NSString_Class/Reference/NSString.html#//apple_ref/doc/uid/20000154-397865" rel="nofollow">developer.apple.com/documentation/Cocoa/…</a> - the above technique would then still work.