Jonathan Allen

5,336
reputation
365 views

Registered User

name Jonathan Allen
member for 1 year
seen yesterday
website
location
age
1d
comment RegEx: Smallest possible match
That is exactly what I needed to know.
2d
awarded  Nice Question
Dec
17
comment Replacement for SQL Server CE for ClickOnce applications.
Even if I could get the installer issues fixed, the database version issue is still painful. There is no GetVersion, so I have to guess whether or not to upgrade the DB file.
Dec
17
asked RegEx: Smallest possible match
Dec
13
asked Replacement for SQL Server CE for ClickOnce applications.
Dec
8
comment How might I set up data plumbing for Silverlight to MySQL in my situation?
Wow, that really sucks. How about just giving up and using a copy of SQL Express that is bulk-loaded from the real database on a regular basis?
Dec
8
comment How do you change the “click to edit” column in sharepoint?
Currently the clickable column is the "Status" column instead of the "Project Title" or "Project Number". So when we see it in reports, we always see stuff like "In QA has been modified" instead of "Foobar feature has been modified"
Dec
7
comment How can I prevent CompileAssemblyFromSource from leaking memory?
If you use "DynamicMethod", the dynamically generated code is associated with an object that can be garbaged collected. msdn.microsoft.com/en-us/magazine/…
Dec
7
asked How do you change the “click to edit” column in sharepoint?
Dec
6
awarded  Mortarboard
Dec
4
comment How can I prevent CompileAssemblyFromSource from leaking memory?
I added a link to an article on expression trees.
Dec
4
revised How can I prevent CompileAssemblyFromSource from leaking memory?
added 87 characters in body
Dec
4
comment How might I set up data plumbing for Silverlight to MySQL in my situation?
Can you wrap your tables in views? If so, that would effectively clean your data without forcing you to write SQL in a particular way.
Dec
4
comment Asynchronous Delegates Vs Thread/ThreadPool?
I don't see how calling QueueUserWorkItem is any more "manual" than calling BeginInvoke.
Dec
4
asked VB.NET: Doesn’t anyone use the dictionary member access expression? (a.k.a. the bang operator)
Dec
3
accepted Asynchronous Delegates Vs Thread/ThreadPool?
Dec
3
comment How would you make this switch statement as fast as possible?
How much does that hash code calculation code you?
Dec
3
comment How would you make this switch statement as fast as possible?
You would also pay for the hash code calculations.
Dec
3
answered Asynchronous Delegates Vs Thread/ThreadPool?
Dec
3
answered How can I prevent CompileAssemblyFromSource from leaking memory?
Dec
3
answered Xaml serialization and immutable structs?
Dec
3
answered How might I set up data plumbing for Silverlight to MySQL in my situation?
Dec
3
comment C# LINQ replacing nulls with meaningful string
ToArray is important. Without it result would be a Query that get re-executed every time you try to use it. This can cause a huge performance hit depending on how you use it.
Dec
3
answered When was MS Message Queue first released?
Dec
3
comment When was MS Message Queue first released?
That doesn't sound right. .NET 4.0 wasn't released until 1996 and I'm pretty sure MSMQ was first introduced in an NT 4 service pack.
Dec
1
asked When was MS Message Queue first released?
Nov
29
comment Are there any non-repeatable IEnumerable classes?
Enumerators are not necessarily repeatable. If your enumerators wraps a stream, then you can't necessarily call Reset on it. But going up one level, you can generally call GetEnumerator as many times are you like and always get the same result. But can you always call GetEnumerator that way?
Nov
29
comment Are there any non-repeatable IEnumerable classes?
Enumerable.Range doesn't create the items at all, that is taken care of by Enumerable.Range.GetEnumerator. Since the enumerator it returns has the same intital values each time, it still would be considered repeatable.
Nov
29
asked Are there any non-repeatable IEnumerable classes?
Nov
28
comment How to print 1 to 100 without any looping using C#
Clever. Evil, but clever.
Nov
28
comment Is there a OpenForms Property in WPF?
I wasn't aware I needed to. I figured one would be automatically created when a WPF form or control was loaded.
Nov
27
comment Is there a OpenForms Property in WPF?
Ok, follow up question. Why is Application.Windows.Current null?
Nov
27
asked Is there a OpenForms Property in WPF?
Nov
27
comment Commercial .NET CSV Parser/Library
It's .NET, you can use it from any language.
Nov
23
comment Commercial .NET CSV Parser/Library
How is that better than .NET's built-in parser?
Nov
23
comment Commercial .NET CSV Parser/Library
Why use that one instead of .NET's built-in parser?
Nov
23
answered Commercial .NET CSV Parser/Library
Nov
21
comment WPF: Progress bar with indeterminent duration?
That can look nicers, but is way too much to learn for what needs to be quick and easy page.
Nov
21
asked WPF: Progress bar with indeterminent duration?
Nov
20
comment Can I translate .net assembly versions to dates?
How do you know I'm building logic on it? Perhaps I'm just looking at a DLL and trying to get a best guess as to when it was built.
Nov
20
comment Can I translate .net assembly versions to dates?
Who says I'm relying on it? Perhaps I'm just looking for a little bit of extra info. Or maybe I'm building a new compiler and want the same behavior just in case someone else is relying on it.
Nov
20
comment Can I translate .net assembly versions to dates?
Reliability isn't important, I just need something.
Nov
20
comment Can I translate .net assembly versions to dates?
Thanks! That is exactly what I needed.
Nov
20
revised Property inheritance in WPF/Silverlight?
clarified question
Nov
19
asked Can I translate .net assembly versions to dates?
Nov
19
asked Property inheritance in WPF/Silverlight?
Nov
19
asked What is a “Freezable” subtype in WPF/Silverlight?
Nov
19
accepted VB 2005/2008 Help Needed - Registry
Nov
19
comment How do I deploy two ClickOnce versions simultaneously?
On another server... yea, it sounds like you have to play with MageUI.
Nov
18
answered How do I deploy two ClickOnce versions simultaneously?