Damovisa
|
Registered User
|
I'm a C# Software Developer who dabbles in PHP, Ruby, and whatever takes my fancy!
|
|
Dec 18 |
awarded | ● Necromancer |
|
Dec 10 |
asked | How can I change the unit tests that are run for a particular build configuration? |
|
Dec 8 |
comment |
Message Box in ASP.NET… @DevelopingChris - weird! |
|
Dec 7 |
comment |
Is this possible in C#? @silky - it's a lot more readable to me as steve.BrainsEaten.ShouldBe(0) than Assert.AreEqual(0, steve.BrainsEaten, "steve.BrainsEaten doesn't match expected: 0") |
|
Dec 7 |
answered | Is this possible in C#? |
|
Dec 7 |
revised |
Message Box in ASP.NET… updated with newer function |
|
Dec 7 |
comment |
Message Box in ASP.NET… @DevelopingChris - I've never had a problem putting real tags in... |
|
Dec 7 |
answered | Message Box in ASP.NET… |
|
Dec 6 |
comment |
ASP.NET MVC 2 Preview/Beta Visual Studio Questions @Baddie - have a look in the GAC. In Windows Explorer, just go to C:\windows\assembly |
|
Dec 6 |
comment |
Is there an effective way to determine whether .Equals on two different but “equal” instances will return true? @Eric - I'm with you, thanks for that explanation. It took a while to absorb, but I got there! |
|
Dec 4 |
comment |
Is there an effective way to determine whether .Equals on two different but “equal” instances will return true? Thanks for your input - it was a poor question in hindsight. I'll tag Marc's answer as correct because it was the closest to what I actually wanted. |
|
Dec 4 |
comment |
Is there an effective way to determine whether .Equals on two different but “equal” instances will return true? This is actually closer to what I really wanted to do. My bad. I've updated my question to clarify. |
|
Dec 4 |
revised |
Is there an effective way to determine whether .Equals on two different but “equal” instances will return true? reason for closing |
|
Dec 4 |
comment |
Is there an effective way to determine whether .Equals on two different but “equal” instances will return true? Yeah, I'm getting the impression that skipping to step 3 is probably the only solution. I'd need to instantiate so I can control the properties set. I'm being passed 2 objects of the same type, but they could have any properties at all. *Honestly, the more I think about it, the more I think that this isn't really what I want to do anyway"... |
|
Dec 4 |
comment |
Is there an effective way to determine whether .Equals on two different but “equal” instances will return true? I've updated my question with more details. @Marc - if the objects don't have empty constructors, I can't instantiate them using reflection without passing in parameters. As I don't know what parameters are required, I can't instantiate them. |
|
Dec 4 |
revised |
Is there an effective way to determine whether .Equals on two different but “equal” instances will return true? clarification, hopefully. |
|
Dec 4 |
comment |
Is there an effective way to determine whether .Equals on two different but “equal” instances will return true? Thanks Joshua, I understand that, but I need to know whether, for a particular reference type, I can use Equals on it to get an "equality". If I just call Equals on two unknown objects and it returns false, I'm none the wiser. |
|
Dec 4 |
comment |
Is there an effective way to determine whether .Equals on two different but “equal” instances will return true? In answer to your question, it's basically an attempt to determine whether a given type is "simple" enough to compare using .Equals. I'm receiving two objects from relatively disparate systems (shared type assembly) and I want to compare them as best I can. If I can't use Equals, I'd want to examine the properties and do my best with comparison. |
|
Dec 4 |
comment |
Is there an effective way to determine whether .Equals on two different but “equal” instances will return true? RE the Halting Problem, do you mean if I was to recursively call this method on each property looking for equality? Otherwise I can't see how it's equivalent... |
|
Dec 4 |
asked | Is there an effective way to determine whether .Equals on two different but “equal” instances will return true? |
|
Dec 2 |
comment |
How can I get a new array from the second item onwards in c#? Thanks for that - first thing I stumbled across after posting this question! |
|
Dec 2 |
asked | How can I get a new array from the second item onwards in c#? |
|
Dec 2 |
comment |
ASP.NET button and Jquery works together? Then yes, what gWiz said I think - use ScriptManager.RegisterStartupScript. to be honest though, I haven't used update panels before so I don't know. You should probably put things like this in the question :). |
|
Dec 2 |
answered | ASP.NET button and Jquery works together? |
|
Dec 2 |
comment |
how do you go about charging for building a website @David - WRT mockups, I highly recommend Balsamiq (balsamiq.com). |
|
Dec 1 |
awarded | ● Good Answer |
|
Dec 1 |
comment |
how do you go about charging for building a website @Chip - Haha, I'm with you on that one... 4 more for me... |
|
Dec 1 |
comment |
ASP.NET MVC 2 Preview/Beta Visual Studio Questions Ok, so you have an MVC project that you wrote in VS 2010 Beta 2 and you want to run it on a server running MVC 2 Beta. I would assume you probably can provided the MVC assemblies expose the same functionality, but I don't know the strong names for the DLLs. You might be able to do a similar process to the one described in my first link. That is, just change your references as appropriate in the web.config. |
|
Dec 1 |
revised |
ASP.NET MVC 2 Preview/Beta Visual Studio Questions answer to the question (I misread) |
|
Dec 1 |
comment |
ASP.NET MVC 2 Preview/Beta Visual Studio Questions Sorry, I misunderstood - I'll update my answer |
|
Nov 30 |
answered | ASP.NET MVC 2 Preview/Beta Visual Studio Questions |
|
Nov 30 |
answered | Does Entity Framwork round off decimal value to nearest integer? |
|
Nov 30 |
answered | C# threading issue |
|
Nov 30 |
revised |
Using Flyweight Pattern in database-driven application Applications spelt wrong in title |
|
Nov 30 |
revised |
how do you go about charging for building a website added link to root Design Cubicle site |
|
Nov 29 |
awarded | ● Nice Answer |
|
Nov 26 |
comment |
how do you go about charging for building a website @Freddy - read and upvoted. It's a very good way of doing a project like this. Quick wins for all involved and a great way to manage expectations and give both parties a way out if it gets out of hand. |
|
Nov 26 |
comment |
how do you go about charging for building a website This is a very good answer. Provided the client is happy with how it all works, it looks to be a really great way of taking on a project like this. Thanks - I think I'll be incorporating a lot of these ideas in my own work. |
|
Nov 25 |
comment |
Design pattern for adding attributes to a base class But you're right - you'd have to examine the actual return type to work that out. |
|
Nov 25 |
comment |
Design pattern for adding attributes to a base class In the first case statement, it should return an object of type ExtendedClass. In the second, it should return an object of type MyBase. |
|
Nov 25 |
revised |
Design pattern for adding attributes to a base class factory was misleading |
|
Nov 25 |
answered | Design pattern for adding attributes to a base class |
|
Nov 25 |
comment |
how do you go about charging for building a website @Freddy - I see your point, but nothing hurts a professional relationship more than mismatched expectations. A client may say they want a calculator to work out quotes based on a changeable set of product prices. What they don't say is that the prices should come from a PDF saved on Jenny's machine in the office. Unless you nail down the expectations, both parties will be left unhappy. That said, if the customer honestly doesn't know what they want, then work with them to find out. I stand by the opinion that you can't have an accurate estimate unless you break it down as much as possible. |
|
Nov 25 |
comment |
how do you go about charging for building a website Thanks David, some good suggestions. Do you mean give them an upper and lower bound though? My only concern with that is that I find it hard to explain to a client why it's difficult to estimate accurately. They'll see two quotes and won't understand why you can't just do it for the lesser amount. |
|
Nov 25 |
comment |
how do you go about charging for building a website +1 for Hofstadter's law |
|
Nov 25 |
answered | how do you go about charging for building a website |
|
Nov 24 |
revised |
Should I start on ASP.NET MVC 1 or MVC 2 Beta? more info |
|
Nov 24 |
comment |
Is ASP.NET MVC appropriate for highly-secure public-facing sites? Hi Jason - basically I'm looking at all aspects of software-based security. SQL/script injection, session hijacking, password security. It seems though from your and other answers that there's nothing additional to watch out for. I just get a little nervous when security is done for me I guess (e.g. custom authorization attributes and html encoding). |
|
Nov 24 |
comment |
Is ASP.NET MVC appropriate for highly-secure public-facing sites? Two reasons: the main one to be honest is that I'm more familiar with security and page lifecycle in webforms and I'm aware of what I need to look for. Secondly, I haven't yet seen an ASP.NET MVC app that is highly secure - even behind https. |
|
Nov 24 |
asked | Is ASP.NET MVC appropriate for highly-secure public-facing sites? |
