Neil

592
reputation
89 views

Registered User

name Neil
member for 9 months
seen 4 hours ago
website
location London, UK
age 30
Freelance .NET developer and website designer based in London, UK.
2d
accepted Which Join having more I/O and CPU Cyecle ?
Dec
8
comment Good Quality Free Gridview for .NET WinForms
Link now broken unfortunately
Dec
3
comment How to do browser detection with jQuery 1.3 with $.browser.msie deprecated?
It might be important to know which browser if you want to display relevant screenshots though...
Nov
25
comment How to apply a css class on a MVC Html.TextBox
You have what appears to be a correct answer - accept it?
Nov
25
comment how shall I do paging in the mvc grid?
Accept the answer or comment. Your accept rate is very low. Based on the fact that you only ever ask questions and don't answer them - at least give people credit when they spend their time to try to help you.
Nov
24
answered Convince me to move to .net 3.5 (from 2.0)
Nov
23
comment please help me with this?
No feedback on whether answer(s) were helpful. Tried giving benefit of the doubt, but based on comments above and accept rate, there's no 2-way street here.
Nov
23
answered What is the best approach to build dynamic LINQ queries?
Nov
20
comment How to code a truly generic tree using Generics
Apologies about missing the 'different type' requirement. Thinking about it some more, what do you gain by using generics in this context? 1. If your Node<T> where T is almost never a value-type, you won't gain performance here. Its only for value-types that you get performance by avoiding boxing/unboxing. 2. if you're concerned about static type safety, it might be better to define your own Node class, with a property of type `object or if require every tree node value to have certain behaviour, make your node class have a property of type ICustomInterface` etc.?
Nov
20
answered How to code a truly generic tree using Generics
Nov
20
accepted Best way to extract date from SQL Datetime field in C#.Net?
Nov
20
comment How-to do the clean up ?
Agree with @Jon. Have a look at [this article][1]. Note that the title is Implementing Finalize and Dispose to Clean Up Unmanaged Resources, even if the article is categorised under Common Design Patterns (disposable pattern) [1]: msdn.microsoft.com/en-us/library/…
Nov
20
answered Best way to extract date from SQL Datetime field in C#.Net?
Nov
20
awarded  Organizer
Nov
20
revised Best way to extract date from SQL Datetime field in C#.Net?
edited tags
Nov
17
revised How|Where are closed-over variables stored?
grammar, case
Nov
17
comment How|Where are closed-over variables stored?
@AnthonyWJones thanks for comment re wording. I'd forgotten to think about more than just the simple case of just one variable in the scope.
Nov
17
revised How|Where are closed-over variables stored?
With comments from @AnthonyWJones
Nov
17
comment How|Where are closed-over variables stored?
@Konstantin I was also confused by value-type thinking originally. Don't think of the value, think of the variable. Unless you declare a new variable for each captured use inside a delegate, ie a new "handle", you are just holding a reference to the "v" variable and that is only declared once in the for loop.
Nov
17
answered How|Where are closed-over variables stored?
Nov
16
answered Does SQL Server 2000 log queries that produce errors anywhere?
Nov
15
answered asp.net application default file Index.aspx
Nov
12
accepted SQL SERVER perfomance ?
Nov
9
comment horner’s rule C++
@Troubadour - I disagree. n is redundant information. The length of the polynomial array is the order of the polynomial. I was explaining that if this was done in a different language it wouldn't even be needed. It's due to c++ implementation.
Nov
8
answered horner’s rule C++
Nov
6
comment Performant File Copy in C#?
+1 for a good practical question that is bound to affect most large websites eventually
Nov
6
comment Performant File Copy in C#?
@Scott fair-do's you're right. The O/S has to aggregate 500k plus records and then you start to loop through it again in your code. Added another answer (completely different approach, so I didn't edit this one)
Nov
6
answered Performant File Copy in C#?
Nov
5
revised Removing duplicates from a list with “priority”
spelling
Nov
5
answered Removing duplicates from a list with “priority”
Nov
5
comment C# - Best way to retrieve accurate date?
I think there might be some confusion about whether you need to take timezones into account. Are you just interested in the time of day at any location, or are you interested in the timespan difference between two dates, no matter where in the world?
Nov
5
answered Performant File Copy in C#?
Nov
4
answered What’s the difference between multiple where clauses and && operator in LINQ-to-SQL?
Nov
4
revised Eating up processing power
added 58 characters in body
Nov
4
answered Eating up processing power
Nov
2
comment Problem with delegates in C#
Favouriting this question. This sort of behaviour just feels "dangerous". I bet its going to come up more often as one of those hard-to-debug issues as C# moves more & more towards a delegate-oriented way of encapsulating behaviour. This is like the looping equivalent of switch clauses being allowed to cascade downward without mandatory "break;" clause
Nov
2
comment Problem with delegates in C#
Jon, trying to get my head around why this happens. I looked at "i" as a value-type thinking "thats got to be passed as a copy", so I couldn't see how it seemed to have reference-like behaviour... You got a summary / one-liner to point me in right direction?
Nov
2
comment Intriguing SQL Server performance-tuning problem
Hi Mark, if your procedures perform a lot of insert operations - still have a look into the PAD_INDEX and FILL_FACTOR of the indexes. That leaves space for new data, otherwise for an INSERT operation the database first has to move data around to make space. It could be the index fill-factor that is killing your performance...
Nov
1
answered Intriguing SQL Server performance-tuning problem
Oct
31
revised In LINQ, what is the main difference/usefulness between .Any<> and .Where<>
edited title
Oct
30
revised Are Linq to sql objects serializable for session state?
Better grammer for the title - as a question
Oct
29
comment Are Linq to sql objects serializable for session state?
Thanks for giving me the idea. I had assumed that if the classes were serializable, then they were serializable, as in the XmlSerializer would have worked. In the end I wrapped and XmlTextWriter around a MemoryStream and then used the DataContractSerializer to serialise into the XmlTextWriter. After that, the byte[] buffer of the memorystream could be serialised and stored out-of-process. I really don't like this kludge of a fix, but I was backed into a corner by someone elses design relying on state instead of a "replay" pattern.
Oct
29
comment Are Linq to sql objects serializable for session state?
Thanks. It seemed like a promising idea, but unfortunately it doesn't work. In a way I was glad :) because it would also be a real pain for a large model with lots of classes. It was nagging at me that tihs article: "How to: Make Entities Serializable (LINQ to SQL)" msdn.microsoft.com/en-us/library/… implies that they should be serialisable.
Oct
29
revised Are Linq to sql objects serializable for session state?
added 208 characters in body
Oct
29
answered Are Linq to sql objects serializable for session state?
Oct
29
asked Are Linq to sql objects serializable for session state?
Oct
8
revised yield return statement inside a using() { } block Disposes before executing
formatting - made "using" bold to highlight keyword
Oct
8
comment yield return statement inside a using() { } block Disposes before executing
Thanks SLaks - 2nd option did the trick and its neat - less lines of code, less bugs!. That call is going into an "AnimalDataContextAdapter" that sits in presentation layer for a WebForms project - specifically to enumerate the collection, so no real loss on deferred execution.
Oct
8
asked yield return statement inside a using() { } block Disposes before executing
Oct
8
comment Are there performance benefits when upgrading SQL2000 to SQL2005?
Adding this as a comment as not really a complete answer: if you tell a little more about whether you do OLTP, OLAP, full-text indexing you might get better answers. One example of improvement is that the performance of LIKE queries (that don't beging with '%') has improved because LIKE now uses indexes...