Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

81
votes
9answers
3k views

What breaking changes are introduced in C++11?

I know that at least one of the changes in C++11 that will cause some old code to stop compiling: the introduction of explicit operator bool() in the standard library, replacing old instances of ...
45
votes
5answers
3k views

Breaking changes in .NET 4.0

There is a lot of information about new features and classes in new 4.0 however there are also changes that may affect existing applications, for example Timespan now implements IFormattable and old ...
41
votes
4answers
1k views

Why does .NET 4.0 sort this array differently than .NET 3.5?

This stackoverflow question raised an interesting question about sorting double arrays with NaN values. The OP posted the following code: static void Main(string[] args) { double[] someArray = { ...
15
votes
3answers
454 views

Rules for C# class backward compatibility/avoiding breaking changes

I'm working on a C# 3.5 assembly that is consumed by many different applications in an enterprise server environment. I would like to add some properties to an existing C# class (not abstract) and ...
5
votes
3answers
299 views

Retrofitting void methods to return its argument to facilitate fluency: breaking change?

"API design is like sex: make one mistake and support it for the rest of your life" (Josh Bloch on twitter) There are many design mistakes in the Java library. Stack extends Vector (discussion), ...
4
votes
4answers
169 views

OrderedDictionary breaking change in .Net 4?

A coworker of mine came across this the other day while we were working on upgrading a project to .Net 4. Given the following code: var od = new System.Collections.Specialized.OrderedDictionary(); ...
4
votes
6answers
223 views

Is changing the number of an enum a breaking change?

Consider the following code: public enum SomeCode { NIF = 0 ,NIE = 1 ,CIF = 2 ,PAS = 3 ,NIN = 4 ,SSN = 5 ,OTH = 5 ,UKN = 6 } Would changing OTH = 5 to OTH = 7 be a ...
4
votes
5answers
363 views

“Cannot use fixed local inside lambda expression”

I have an XNA 3.0 project that compiled just fine in VS2008, but that gives compile errors in VS2010 (with XNA 4.0 CTP). The error: Cannot use fixed local 'depthPtr' inside an anonymous method, ...
3
votes
3answers
60 views

Does extra inheritance make any difference on object structure or instantiation?

In the code there are some special classes and there are some normal classes. I want to differentiate them because special classes needed to be given different treatment. All these special classes are ...
3
votes
1answer
500 views

Camera Capture in WP7 Mango

I've recently upgraded my WP7 app to Mango and am having some problems with the camera. The code below used to work on 7.0, but on 7.1 the completed handler fires before the dialog is even shown, so I ...
3
votes
1answer
364 views

ASP.NET MVC 2: Breaking changes

What will be broken after migrate to MVC 2? I wonder what breaking changes will come with MVC 2, so how traumatic will be the migration? How much smooth have been your experience migrating?
3
votes
1answer
4k views

Calling UrlDecode in a C# .NET 4.0 Visual Studio 2010 Console Application?

OK, for some reason Microsoft removed System.Web but we can import System.Net.WebUtility and call HtmlDecode(), but how can we call UrlDecode()? Please answer for .NET 4.0/VS2010 B2 ONLY.
2
votes
3answers
105 views

Detecting breaking changes in .NET code using TFS?

I would like to detect breaking changes in .NET code (specifically C#) whenever TFS builds a solution. If there are any breaking changes (such as outlined in "A definite guide to API-breaking changes ...
2
votes
2answers
279 views

If I add new possible values to my enum type, will this change my wsdl?

I have a web service and I'm using an enum type in it. I have made some changes in my code and i added a new value to my enum type. Is this going to change my wsdl declaration ? And is that going to ...
1
vote
1answer
217 views

How to debug local http server in own .NET program when there are differences between .NET 3.5 and 4.0?

I am building a WebDAV server class library for .NET and I'm having some difficulties. I planned on building the class library for .NET 3.5 since it can then be used by both .NET 3.5 and 4.0 ...
0
votes
1answer
56 views

Castle Windsor 3.0 Breaking Changes

In the spirit of this question: Castle Windsor 2.5 Breaking Changes Is there a comprehensive list of why my code is broken now and how I go about fixing it? My googlefu is failing me.
0
votes
0answers
336 views

jQuery 1.4.1, serialize() - Is this broken on IE9 and Firefox 4.0?

Building on this post... Is it widely known that jQuery 1.4.1's serialize() function is broken in IE9 and Firefox 4.0? Yes - I know that, as of March 25th, 2011, jQuery's current release is ...
0
votes
1answer
46 views

Changes to classic ASP

I've just been asked to look after some classic asp code, currently running on IIS6, I'm on IIS7...and the existing code is throwing up a few errors I'm not sure I'd expect. Has anything changed in ...
0
votes
1answer
39 views

When to build a migration?

I am building a visual studio like application: User can create a new project, edit it, save it to disk and load. The project isn't exactly like VS it is domain specific. Like with VS I need a way to ...
0
votes
1answer
130 views

Where is the 'ViewLocator' or 'WebformViewLocator' in ASP.NET MVC 2

I'm looking at some (old) sample projects of ASP.NET MVC 2, to do some self-teaching on the subject. However, I 'WebformViewLocator' no longer seems to be present in MVC2, while it is used in the ...
0
votes
2answers
1k views

Using a custom MvcHttpHandler v2.0 Breaking change from 1.0 to 2.0?

I have a site where part is webforms (Umbraco CMS) and part is MVC This is the HttpHandler to deal with the MVC functionality: public class Mvc : MvcHttpHandler { protected override void ...