Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

97
votes
4answers
42k views

Why Java Vector class is considered obsolete or deprecated?

Why Java Vector is considered a legacy class, obsolete or deprecated? Its use isn't valid when working with concurrency? And if I don't want to manually synchronize objects and just want to use a ...
60
votes
12answers
2k views

What are the C functions from the standard library that must / should be avoided?

I've read on stackoverflow that some C functions are 'obsolete' or should be 'avoided'. Can you please give me some examples of this kind of functions + the reason why. What alternatives of those ...
32
votes
14answers
15k views

Are IFrames (HTML) obsolete?

Getting contradictory messages about that, hope they're not. I cannot imagine support for it would stop, since a gazillion sites use them. Some additional questions about that: Why should they ...
20
votes
3answers
976 views

Why isn't ArrayList marked [Obsolete]?

After a deep thought and looking into the implementation of ArrayList, personally I really want to say It's obsolete, I have no reason to use this class after 2.0. But since it's not marked as ...
17
votes
12answers
1k views

Outdated coding practices

As I do my coding I sometimes wonder if I'm doing things the best way or just the way it's always been done. Does what I'm doing make sense anymore? For example, declaring all your variables at the ...
15
votes
5answers
225 views

Why does this code compile without error even though the class is marked Obsoleted?

This is Visual Studio 2008. Obviously has to do with the static class for an extensions. public class Dummy { public readonly int x; public Dummy(int x) { this.x = x; } ...
14
votes
13answers
460 views

How to prevent your code from becoming obsolete?

Some programmers here have been developing a project in VB6, and they say they now need to upgrade to vb.net if they want their apps to run on newer/future systems as vb6 is going to be history soon. ...
11
votes
4answers
381 views

Move semantics == custom swap function obsolete?

Recently, many questions pop up on how to provide your own swap function. With C++11, std::swap will use std::move and move semantics to swap the given values as fast as possible. This, of course, ...
10
votes
11answers
432 views

What should I do when something I know is dead ? [closed]

I recently came into some blogs saying that Linq to Sql is dead. and a few days ago I saw a discussion with some people saying that Silverlight maybe will take ASP.net place! ...I don't want to ask if ...
10
votes
3answers
1k views

Why are C# collection-properties not flagged as obsolete when calling properties on them?

I tried to flag a collection property on a class as Obsolete to find all the occurances and keep a shrinking list of things to fix in my warning-list, due to the fact that we need to replace this ...
8
votes
5answers
350 views

Usage of the Obsolete attribute

I was recently told it was bad practice to haved marked a number of methods in our code with the [Obsolete] attribute. These methods were internal to our codebase, rather than being on an API. The ...
8
votes
2answers
196 views

Is Obsolete attribute only checked at Compile time?

I wonder that the obsolete attribute is checked at only runtime? Think that you have two assemblies. Assembly A uses a method from Assembly B. After that we mark the method in Assembly B as obsolete ...
8
votes
1answer
274 views

How can I mark Perl code as deprecated?

In my project I'm currently preparing a step-by-step move from legacy code to new, properly-designed and tested modules. Since not every fellow programmer follows closely what I do, I would like to ...
7
votes
5answers
345 views

How can I mark a specific parameter as obsolete/deprecated in C#?

I would like to be able to keep a C# API the same as it is now, but simply deprecate one of the parameters in a method call. Is it possible to do so, or do I need to create a new method without the ...
7
votes
2answers
2k views

Suppressing obsolete warnings in VB.Net

I have VB.Net code in VS 2008 using an obsolete method, and would like to suppress the warning. Unfortunately, following the recommendation is not a good solution, because it requires using a ...
7
votes
18answers
872 views

What obsolete programming techniques are you glad to see go?

G'day, Inspired by this article here, what programming techniques are you glad to see the back of? Has anything arisen to replace them? For example: I had to learn Miditran in first year at ...
6
votes
1answer
467 views

Warnings as Errors versus Deprecated Attribute in Visual Studio

We like the Warnings as Errors setting as we have a policy of not checking in code with warnings and this is the only effective way we have found to enforce it. We also like to use the Obsolete ...
6
votes
5answers
175 views

Prevent other developers using base methods within a class

I have a class that uses filesystem entities to manipulate data. We have several methods specifically designed to (attempt to) cope with some of the issues we face with this approach (file locking, ...
4
votes
5answers
205 views

Should we think about CSS media other than screen and print?

Should we think about CSS media other than screen and print? http://www.w3.org/TR/CSS2/media.html#media-types all Suitable for all devices. braille Intended for braille tactile feedback ...
4
votes
1answer
757 views

What should I use instead of LoadWithPartialName()?

I'm loading an assembly with LoadWithPartialName(), but VS tells me that it's obsolete and to use Load() instead. However, I can't find any convenient overload. There is a Load(string) with asks for ...
3
votes
2answers
41 views

Obsolete an entire namespace?

Can I mark an entire namespace as obsolete i .NET (3.5 and 4) somehow, or alternativly an entire project? -a-
3
votes
2answers
75 views

MonoTouch: UIImage.asJPEG needs a NSError object

To save a UIImage to a PNG or JPEG locally you call the asPNG().Save(...) function. The asPNG().Save() function requires an out NSError The problem is that you can no longer just create a blank ...
3
votes
3answers
80 views

What happened to the *= and =* for outer joins in SQL?

I was just curious as to why the *= operator for left outer join and the '=*' for 'right outer join were taken out of the SQL standard, or, at least not supported by SQL server 2005 and on? I have ...
3
votes
1answer
178 views

Configure autofac to ignore constructors marked as obsolete

Is it possible to easily configure autofac so it will only resolve using non-obsolete constructors? eg for a class with a helper constructor for non-DI code, public class Example { public ...
3
votes
3answers
302 views

Mark as Obsolete

I am trying to find all the unused methods of my project. I have search ways of doing this, but the most convincing answer I found was to declare all my functions as obsolete, and remove this ...
3
votes
6answers
326 views

Ambiguous class name

If have a new project (ProjNew ) where I want to put several classes that are on other project (ProjOld). The problem is I want to maintain the old classes marked with Obsolete to avoid running all ...
3
votes
4answers
2k views

How to hide an inherited property in a class without modifying the inherited class (base class)?

If i have the following code example: public class ClassBass { public int ID { get; set; } public string Name { get; set; } } public class ClassA : ClassBass { public int JustNumber { ...
3
votes
7answers
256 views

Are you forced to develop for old web browsers? [closed]

I always wondered why people are still running older web browsers until I started at my current job. Here I am forced to use IE6 to develop all of our internal applications, as our target users also ...
2
votes
3answers
61 views

.net framework Obsolete methods - when will they be removed?

I have been tasked with recompiling an application from .net 1.1 to .net 4.0. I have been told to not make any code changes - however with all the changes through the versions of the framework - I am ...
2
votes
1answer
48 views

Why is InvalidEnumArgumentException obsolete in Silverlight 4?

I was surprised to discover that InvalidEnumArgumentException has been made obsolete in Silverlight 4. Does anyone know why this is? I found this to be quite a useful exception, especially when ...
2
votes
1answer
162 views

Obsolete T-SQL programming features in SQL Server 2008 R2

We have lots of stored procedures written in SQL Server 2005. After database migrated from 2005 to 2008 all of them seem to be functional as before. Now we need to migrate to 2008 R2. So the question ...
2
votes
1answer
720 views

MonoTouch NSNotificationCenter.DefaultCenter.AddObserver now obsolete?

I'm just wondering what the modern equivalent of: NSNotificationCenter.DefaultCenter.AddObserver("UIDeviceOrientationDidChangeNotification", receivedRotate); would be. It says its obsolete and that ...
2
votes
4answers
285 views

How to mark something in QT as obsolete(deprecated)?

Is there Q_OBSOLETE or Q_DEPRECATED in C++ with QT 4.7? Or is there a similar C++ macro or keyword?
2
votes
1answer
296 views

Obsolete attribute doesn't cause any compiler warning in VS2010

I'm using Visual Studio 2010. But find that the Obsolete attribute doesn't cause any compiler warning (I want it to cause a compiler warning). The warning level is 4. Thanks.
2
votes
4answers
458 views

Learning HyperCard

I've got HyperCard 2.4.1 for my Mac 7.5.5. Then I want to know where I can learn, for free and some books to buy too, but I'm now focusing on the free things. I've got HyperCard because of the ...
2
votes
3answers
151 views

Database schema changes needed yearly. Which Strategy should be used?

Every year our company holds a conference/stand where participants can show their products. We have a web-application which let the participants sign up for the conference. They can enter ...
2
votes
2answers
374 views

ObsoleteAttribute confusion

I would like to apply ObsoleteAttribute to a property, but it seems that compiler generates warnings/errors only for direct usage of attribute, any indirect usage is silently ignored. I think the ...
1
vote
1answer
94 views

CSS 3.0 user-select property replacement

I am using CSS 3.0 and it is complaining that the "user-select" property doesn't exist. Does anyone know what the appropriate substitute or replacement is?
1
vote
1answer
222 views

please delete this

obsolete question delete no longer needed
1
vote
2answers
755 views

How do I fix RegisterClientScriptBlock is Obsolete warning in Visual Studio

I have the following Sub Routine in my vb.net project which runs fine, but I constantly get build warnings: 'Public Overridable Sub RegisterClientScriptBlock(key As String, script As String)' is ...
1
vote
1answer
157 views

How to mark an assembly as obsolete [closed]

Possible Duplicate: Is it possible to mark an assembly as deprecated? I have the need to mark an assembly as obsolete. I am aware of the ObsoleteAttribute. The bad thing is, it cannot be ...
1
vote
2answers
113 views

Why was Pathname's chdir method obsoleted?

Why is Pathname's chdir method obsoleted since ruby 1.8.1? What is wrong with it? This: dir = Pathname('a') dir.chdir do ... end is shorter and more readable than this: dir = Pathname('a') ...
1
vote
2answers
147 views

copies of Visual Basic 3 and 4 [closed]

I need to get ahold of copies of Visual Basic 3 and 4. I tried eBay. Any other ideas?
1
vote
1answer
94 views

.NET Framework deprecated interfaces and attributes. What was your biggest refactoring due to lack of support?

Some .net-framework interfaces and attributes become obsolete and deprecated since new framework version appears. I am warned that such code may be removed or become unpredictable in next versions but ...
1
vote
2answers
239 views

AOP and .NET: Is Contexts an obsolete concept?

Recently I've started learning about Contexts in .NET (context-bound, context-agile, message sinks, etc.). Several alarm bells started ringing: All context-bound classes are derived from ...
1
vote
2answers
273 views

Creating a Form In C++

I'm just starting to use MetroWerks CodeWarrior 1.1 For Mac 68k in a Mac System 7.5.5, but I need to know: How can I create a simple Form with a TextBox on it? Thanks.
1
vote
2answers
111 views

When, if ever, would you expect classes marked as obsolete to be removed from the .NET framework?

As we approach the 4th major release of the .NET framework we are likely to see an increase in the number of classes and methods marked as obsolete (to indicate they are deprecated). I found this page ...
1
vote
3answers
601 views

Public Overrides Function GetBytes() As Byte() is obsolete

What does the poet try to say? Public Overrides Function GetBytes() As Byte() is obsolete: Rfc2898DeriveBytes replaces PasswordDeriveBytes for deriving key material from a password and is preferred ...
0
votes
1answer
56 views

What should I be using instead of AddPort?

I'm maintaining a port monitor for a virtual printer, and I noticed that some of the interface we implement, including AddPort, have been marked as obsolete (see: ...
0
votes
4answers
218 views

why is Android API level 9 obsolete?

Android version 2.3 - 2.3.2 (API 9) are declared as obsolete, and according to Android Market statistics, are very rare (0.5% of market users). The question is: Why is API 9 declared obsolete and ...

1 2