次の方法で共有


ObsoleteAttribute コンストラクタ ()

ObsoleteAttribute クラスの新しいインスタンスを既定のプロパティを使用して初期化します。

名前空間: System
アセンブリ: mscorlib (mscorlib.dll 内)

構文

'宣言
Public Sub New
'使用
Dim instance As New ObsoleteAttribute
public ObsoleteAttribute ()
public:
ObsoleteAttribute ()
public ObsoleteAttribute ()
public function ObsoleteAttribute ()

解説

ObsoleteAttribute のインスタンスの初期プロパティ値を次の表に示します。

プロパティ

IsError

false

Message

null 参照 (Visual Basic では Nothing)

使用例

Imports System

Public Class ObsoleteAttrib_Cons1
   ' Mark the method as 'Obsolete'.
   <ObsoleteAttribute()> Public Function OldFunction() As String
      Return "This is the String from old function."
   End Function 'OldFunction
   
   ' Create the another function which is replacement to the 'OldFunction'.
   Public Function NewFunction() As String
      Return "This is the String from new function."
   End Function 'NewFunction
End Class 'ObsoleteAttrib_Cons1

Public Class TestObsolete1
   'Entry point which delegates to C-style main Private Function
   Public Overloads Shared Sub Main()
      Main(System.Environment.GetCommandLineArgs())
   End Sub
   
   Overloads Shared Sub Main(args() As String)
      Try
         Dim myObsolete As New ObsoleteAttrib_Cons1()
         Console.WriteLine(myObsolete.OldFunction())
      Catch e As Exception
         Console.WriteLine(("The Exception is :" + e.Message))
      End Try
   End Sub 'Main
End Class 'TestObsolete1
using System;

public class ObsoleteAttrib_Cons1
{
   // Mark the method as 'Obsolete'.
   [ObsoleteAttribute()]
   public string OldFunction()
   {
      return "This is the String from old function.";
   }
   
// Create the another function which is replacement to the 'OldFunction'.
   public string NewFunction()
   {
      return "This is the String from new function.";
   }
}

public class TestObsolete1
{
   static void Main(string[] args)
   {         
      try
      {
         ObsoleteAttrib_Cons1 myObsolete = new ObsoleteAttrib_Cons1();
         Console.WriteLine(myObsolete.OldFunction());
      }
      catch(Exception e)
      {
         Console.WriteLine("The Exception is :"+e.Message);
      }
   }
}
using namespace System;
public ref class ObsoleteAttrib_Cons1
{
public:

   // Mark the method as 'Obsolete'.

   [Obsolete]
   String^ OldFunction()
   {
      return "This is the String from old function.";
   }


   // Create the another function which is replacement to the 'OldFunction'->
   String^ NewFunction()
   {
      return "This is the String from new function.";
   }

};

int main()
{
   try
   {
      ObsoleteAttrib_Cons1^ myObsolete = gcnew ObsoleteAttrib_Cons1;
      Console::WriteLine( myObsolete->OldFunction() );
   }
   catch ( Exception^ e ) 
   {
      Console::WriteLine( "The Exception is : {0}", e->Message );
   }

}
import System.*;

public class ObsoleteAttrib_Cons1
{
    // Mark the method as 'Obsolete'.\

    /** @attribute ObsoleteAttribute()
     */
    public String OldFunction()
    {
        return "This is the String from old function.";
    } //OldFunction

    // Create the another function which is replacement to the 'OldFunction'.
    public String NewFunction()
    {
        return "This is the String from new function.";
    } //NewFunction
} //ObsoleteAttrib_Cons1

public class TestObsolete1
{
    public static void main(String[] args)
    {
        try {
            ObsoleteAttrib_Cons1 myObsolete = new ObsoleteAttrib_Cons1();
            Console.WriteLine(myObsolete.OldFunction());
        }
        catch (System.Exception e) {
            Console.WriteLine("The Exception is :" + e.get_Message());
        }
    } //main
} //TestObsolete1

プラットフォーム

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。

バージョン情報

.NET Framework

サポート対象 : 2.0、1.1、1.0

.NET Compact Framework

サポート対象 : 2.0、1.0

参照

関連項目

ObsoleteAttribute クラス
ObsoleteAttribute メンバ
System 名前空間