次の方法で共有


GacMembershipCondition コンストラクター

定義

GacMembershipCondition クラスの新しいインスタンスを初期化します。

public:
 GacMembershipCondition();
public GacMembershipCondition ();
Public Sub New ()

次のコード例は、 コンストラクターの使用方法を GacMembershipCondition 示しています。 この例は、クラス トピックで提供される大きな例の GacMembershipCondition 一部です。

GacMembershipCondition ^ Gac1 = gcnew GacMembershipCondition;
try
{
    Console::WriteLine(
        "Result of GetHashCode for a GacMembershipCondition = {0}\n",
        Gac1->GetHashCode());
}
catch (Exception^ e) 
{
     Console::WriteLine("GetHashCode failed : {0}{1}", Gac1, e);
     return false;
}
GacMembershipCondition Gac1 = new GacMembershipCondition();
try
{
    Console.WriteLine(
        "Result of GetHashCode for a GacMembershipCondition = " + 
        Gac1.GetHashCode().ToString() + "\n");
}
catch (Exception e)
{
    Console.WriteLine("GetHashCode failed : " + Gac1.ToString() + e);
    return false;
}
Dim Gac1 As New GacMembershipCondition
Try
    Console.WriteLine( _
        ("Result of GetHashCode for a GacMembershipCondition = " _
        & Gac1.GetHashCode().ToString() & ControlChars.Lf))
Catch e As Exception
    Console.WriteLine(("GetHashCode failed : " & _
        Gac1.ToString() & e.ToString()))
    Return False
End Try

注釈

グローバル アセンブリ キャッシュにインストールされている場合、コードはこのメンバーシップ条件を満たします。

適用対象