且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何将这个C#代码转换为C ++ / CLI

更新时间:2023-02-07 22:59:10

***使用C ++ / CLI中提供的堆栈语义自动处理对象。对圣C ++ RAII模式的仿真,即使代码抛出异常,对象也会被释放。想象它作为编译器自动生成C#使用语句。看起来像这样:

Making liberal use of the stack semantics available in C++/CLI to automatically dispose objects. An emulation of the Holy C++ RAII pattern, the object gets disposed even when the code throws an exception. Think of it as the compiler automatically generating the C# using statement. Look like this:

using namespace System;
using namespace System::IO;
using namespace System::Security::Cryptography;
using namespace System::Text;

ref class Example {
protected:
    String^ GetMD5HashFromFile(String^ fileName)
    {      
        FileStream file(fileName, FileMode::Open);
        MD5CryptoServiceProvider md5;
        array<Byte>^ retVal = md5.ComputeHash(%file);
        return Convert::ToBase64String(retVal);
    }
};