Jake Pearson

2,403
reputation
158 views

Registered User

name Jake Pearson
member for 1 year
seen 3 hours ago
website
location Boulder, CO, US
age 33
Good times.
Dec
11
accepted Limit RemoveAll to a certain number of objects
Dec
11
revised Limit RemoveAll to a certain number of objects
added 1 characters in body
Dec
11
revised Limit RemoveAll to a certain number of objects
added 87 characters in body; added 21 characters in body
Dec
11
answered Limit RemoveAll to a certain number of objects
Dec
8
comment Extension method for fill rectangular array in C#
I tried array.SetValue(&value, indexes); but it won't compile. Is there a way to cast/convert an object to an int* in C#?
Dec
7
accepted Extension method for fill rectangular array in C#
Dec
7
revised Extension method for fill rectangular array in C#
added 182 characters in body; added 1 characters in body; deleted 112 characters in body
Dec
7
revised Extension method for fill rectangular array in C#
added 502 characters in body; deleted 21 characters in body
Dec
7
answered Extension method for fill rectangular array in C#
Dec
3
answered looking for an idea for a .net web app with video chat
Nov
29
awarded  Nice Question
Nov
26
asked A Thanksgiving Thank You
Nov
23
revised Adding line break in C# Code behind page
added 1 characters in body
Nov
23
comment Adding line break in C# Code behind page
Good point, fixed.
Nov
23
revised Adding line break in C# Code behind page
added 19 characters in body
Nov
23
answered Adding line break in C# Code behind page
Nov
19
revised How can I make a read-only ObservableCollection property?
added 422 characters in body
Nov
19
answered How can I make a read-only ObservableCollection property?
Nov
18
answered Wait thread question
Nov
11
answered Generics - Clarification Required
Nov
5
comment High-performance Math library for .NET /C# and Java
Our previous engine was written in C, but the simulation scripting engine was interpreted. Now the simulation is compiled C#, so the performance is about 1000x over the old system. I suspect carefully tuned C would beat C# for a lot of very heavy math operations.
Nov
4
comment High-performance Math library for .NET /C# and Java
I write a discrete event simulation application called Micro Saint Sharp. We switched from C to C# 7 years ago. The performance is great. I don't use any external math libraries. The only special math class we use is for calculating various random distributions, performance of it has never been a simulation bottleneck.
Nov
4
answered High-performance Math library for .NET /C# and Java
Nov
3
accepted WPF - Scrolling Listbox in an Expander
Nov
2
accepted Enable ASP.NET in IIS6 Programatically
Nov
2
revised WPF Dynamic Binding
added 95 characters in body; edited body
Nov
2
comment WPF Dynamic Binding
Thanks for the post, but I'm not looking to bind to Value but to the property with the name that Value holds. From the above example, one of the pairs would bind to the value of the Orange property and the other to the Apple property.
Nov
2
asked WPF Dynamic Binding
Nov
2
comment WPF - Scrolling Listbox in an Expander
Also, I imagine there is a better solution than what I just suggested.
Nov
2
comment WPF - Scrolling Listbox in an Expander
You could do a binding with syntax like this: {Binding ElementName=Window1, Path=Height} but that would lead to too large of a value. I think instead you will need to a property to your window that is Height - SomeOffset.
Nov
2
answered WPF - Scrolling Listbox in an Expander
Oct
30
comment Unexpected Cross Thread Exception
I think you are correct. I fixed the issue, by tying the populate method to the VisibleChanged event. Thanks.
Oct
30
asked Unexpected Cross Thread Exception
Oct
30
answered Converting Reflected Property to String
Oct
28
awarded  Popular Question
Oct
26
answered Enable ASP.NET in IIS6 Programatically
Oct
26
comment Enable ASP.NET in IIS6 Programatically
Thanks, I want to set it up from post install action I have.
Oct
26
asked Enable ASP.NET in IIS6 Programatically
Oct
26
answered Fixed Size to List
Oct
22
comment WPF Refresh Model on binding
In that case, I don't have any really bright ideas, sorry :(
Oct
22
answered WPF Refresh Model on binding
Oct
22
accepted How do I inherit from Dictionary?
Oct
20
accepted Question about XmlSerializer in .NET
Oct
20
comment How do I inherit from Dictionary?
public has to be explicitly defined in C#, without it everything defaults to private.
Oct
20
comment How do I inherit from Dictionary?
Nope, TKey and TValue are now defined as part of the class. You don't need to redefine them in each method.
Oct
20
answered How do I inherit from Dictionary?
Oct
20
answered Question about XmlSerializer in .NET
Oct
20
accepted Is there a better way to implement a Remove method for a Queue?
Oct
20
comment Is there a better way to implement a Remove method for a Queue?
Also, you can speed up your existing method by enqueueing as you dequeue instead of saving your queue to a temporary list.
Oct
20
answered Is there a better way to implement a Remove method for a Queue?