Will
|
Registered User
|
.NET developer and architect (C#, of course) for a small software company in Columbia, SC. If you're wondering what I'm doing, check out my questions.
|
|
11h |
comment |
Hidden Features of C#? @Ian: I suppose if I tracked down and beat up anybody using my API that would also be very strange to anyone using it. Perhaps I'll strike that from my "foolish things that anybody with sense wouldn't do but seem like a pretty cool idea to me" list. I just can't fathom what your comment has to do with anything. It boggles my mind. "If you did something stupid it would be stupid." I suppose it makes sense, but why would I? I'm so confused. |
|
1d |
awarded | ● Mortarboard |
|
2d |
comment |
Can I force memory cleanup in C#? Stop it. Don't. Leave it alone. Don't you dare. No. Not yours. Go away, think about something else. |
|
Dec 3 |
comment |
Access the project file structure within the Visual Studio Properties property grid? Unfortunately, there are a couple issues with this. First, GetActiveObject snags the first VS from the ROT, which means it could be one of any of the instances of VS you have running. You have to run through the ROT and get the one you need. Second, once you do have your DTE, you can enumerate stuff fine until you actually try to get a value from a property, which throws a SerializableException. |
|
Dec 3 |
accepted | What is the preferred method for building web services in .Net? |
|
Dec 2 |
accepted | How do I know when to use state based testing versus mock testing? |
|
Dec 2 |
comment |
Access the project file structure within the Visual Studio Properties property grid? Thanks for the help. |
|
Dec 2 |
comment |
Delay signing during development and not on the build server I'm closing but not because its a dupe (it is NOT), but because the top answer in that question contains the information needed -- stackoverflow.com/questions/1056997/… |
|
Dec 2 |
comment |
Anybody know of any T4 templates for generating classes from xsd? I think this is the best solution at this point. A better soulution is probably to avoid the situation to begin with. |
|
Dec 2 |
comment |
Does Rijndael always throw an exception if the password isn’t correct? BTW, solution was to prepend the byte array with a known byte array and then remove it after decryption. If the decrypt threw, I knew the password was wrong. If the array was wrong, I knew the password was wrong. |
|
Dec 2 |
comment |
What to name an object that encapsulates its identifer? Same difference. Whether I base it off a class or an interface. IUnique is not bad, but what would the collection be called? UniqueCollection is bad, IUniqueCollection would be more appropriate but a bad name... |
|
Dec 2 |
answered | What line(s) this code might throw a “Index was outside the bounds of the array” exception? |
|
Dec 2 |
comment |
Using Microsoft T4 to create data access classes. I think you're not getting answers because your question isn't clear. We don't know what ordinal_etcs are or what -1 means in this case. Perhaps more details about what you're trying to do rather than the code? |
|
Dec 2 |
comment |
Why can’t nullables be declared const? This is one of the reasons why stackoverflow is so badass. |
|
Dec 2 |
answered | Difference between Assembly.CreateInstance and Activator.CreateInstance? |
|
Dec 2 |
answered | IL / CLR / DLR References? |
|
Dec 2 |
revised |
how to pass variables inside one page edited tags; edited title |
|
Dec 2 |
comment |
Can ‘Not putting my DB under the ‘App_Data’ affect the way Linq2Sql works? Not sure. If it is, its on the propreties of the dbml or on the entities themselves... |
|
Dec 2 |
comment |
How to use typeof or GetType() as Generic’s Template? I hate you, Jb. I hate you so much. |
|
Dec 2 |
revised |
How to use typeof or GetType() as Generic’s Template? added 692 characters in body |
|
Dec 1 |
accepted | Can ‘Not putting my DB under the ‘App_Data’ affect the way Linq2Sql works? |
|
Dec 1 |
asked | What’s the pattern for design-time validation in Workflow Foundation 4.0? |
|
Dec 1 |
revised |
c# stateserver maintains session between machines deleted 12 characters in body |
|
Dec 1 |
awarded | ● Favorite Question |
|
Nov 30 |
accepted | c# stateserver maintains session between machines |
|
Nov 30 |
revised |
c# stateserver maintains session between machines added 1110 characters in body; deleted 12 characters in body; added 2 characters in body |
|
Nov 30 |
answered | c# stateserver maintains session between machines |
|
Nov 30 |
revised |
Can ‘Not putting my DB under the ‘App_Data’ affect the way Linq2Sql works? added 34 characters in body; added 5 characters in body |
|
Nov 30 |
comment |
Can ‘Not putting my DB under the ‘App_Data’ affect the way Linq2Sql works? Shoot, I said "mdf" when I meant dbml... fixing. |
|
Nov 30 |
comment |
Can ‘Not putting my DB under the ‘App_Data’ affect the way Linq2Sql works? Name is the name of the context (e.g., TheBeerHouseDataContext.SubmitChanges()). Entity namespace is the namespace of all the entity classes (TheBeerHouse.Data.Beer b = TheBeerHouseDataContext.Beers.FirstOrDefault()) |
|
Nov 30 |
answered | Can ‘Not putting my DB under the ‘App_Data’ affect the way Linq2Sql works? |
|
Nov 29 |
comment |
C#-Details of AsyncWaitHandle.WaitOne And you should always call EndInvoke otherwise you'll leak resources (the wait handles used internally). |
|
Nov 29 |
comment |
How do I create a ribbon bar in WPF? I believe it will also be available in .NET 4.0. |
|
Nov 28 |
revised |
Can’t save in-memory linq to sql entities without db errors added 33 characters in body |
|
Nov 28 |
comment |
Can’t save in-memory linq to sql entities without db errors I haven't done anything accdientally. I've created entities with guaranteed unique names and am adding them to the db. |
|
Nov 28 |
revised |
Can’t save in-memory linq to sql entities without db errors added 191 characters in body |
|
Nov 28 |
answered | ‘System.OutOfMemoryException’ while writing 400.000 records to file |
|
Nov 28 |
asked | Can’t save in-memory linq to sql entities without db errors |
|
Nov 27 |
comment |
Reading Excel files from C# I won't down you, but I recently started using FileHelpers and was shocked at how ... crappy it is. For instance, the only way to map columns in a csv to properties... excuse me, FIELDS, of a model is to create the fields in the order of the columns. I don't know about you, but I wouldn't rely on a quirk of the compiler for one of the most central design considerations of my f8king framework. |
|
Nov 27 |
comment |
Reading Excel files from C# A++++ would let some other poor sombitch write it for me again. |
|
Nov 27 |
comment |
Reading Excel files from C# Of course that's not true, Stingy. You have to sift through all the data and write crappy DB code (hand craft your models, map columns to properties, yadda yadda). The quickest way is to let some other poor SOB do this for you. That's why people use frameworks instead of writing everything from the bottom up. |
|
Nov 27 |
comment |
WPF Binding to local variable There's nothing automatic about INPC. You have to do all the heavy lifting. But that would be silly in this instance as he's binding to the Window, which is, in fact, a DependencyObject and supports DP's out of the box. So advising him to implement INPC would be like an unsharpened pencil. |
|
Nov 25 |
answered | Visual Studio 2008 creating new classes? |
|
Nov 25 |
answered | Safely iterate an array that can be changed in another thread |
|
Nov 25 |
comment |
Safely iterate an array that can be changed in another thread Interesting... I'd think System.Array would provide this just so that behavior would be widely implemented. |
|
Nov 25 |
comment |
Safely iterate an array that can be changed in another thread If you've got an iterator to a collection and that collection changes (on another thread) doesn't the iterator throw? |
|
Nov 25 |
comment |
Microsoft Certification Exams 70-562 BRB, taking 70-562 |
|
Nov 25 |
revised |
What is the preferred method for building web services in .Net? added 280 characters in body |
|
Nov 25 |
comment |
What is the preferred method for building web services in .Net? Hmmmm... I normally don't think of WCF hosted in IIS. I'll edit to add some details on that. Thanks. |
|
Nov 25 |
answered | What is the preferred method for building web services in .Net? |
