アセンブリの MD5 ハッシュ値を取得します。
Public ReadOnly Property MD5 As Byte ()
[C#]
public byte[] MD5 {get;}
[C++]
public: __property unsigned char get_MD5();
[JScript]
public function get MD5() : Byte[];
プロパティ値
アセンブリの MD5 ハッシュ値を表すバイト配列。
解説
コンストラクタで指定されたアセンブリが、ハッシュ計算の対象となるバイトを提供します。
使用例
[Visual Basic, C#, C++] myAssembly
の MD5 ハッシュを計算し、 hashcode
に格納する例を次に示します。
Dim hash As New Hash(myAssembly)
Dim hashcode As Byte() = hash.MD5
[C#]
Hash hash = new Hash ( myAssembly );
Byte[] hashcode = hash.MD5;
[C++]
Hash* hash = new Hash ( myAssembly );
Byte hashcode[] = hash->MD5;
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ