Public · Protected · Private
Any guidelines on depletind a method?
Type: Public  |  Created: 2012-08-15  |  Frozen: Yes
« Previous Public Blog Next Public Blog »
Comments
  • hope this Question is on depleting of a method.

    Start with obselete attribute 
    [Obsolete("Use othermethod  instead of .thisMethod()", false)] // warning to client app
    In youe next to next release make it
    [Obsolete("Use othermethod  instead of .thisMethod()", true)]  // make it compiler error

    2012-08-15 16:23
This blog is frozen. No new comments or edits allowed.