Exemplo n.º 1
0
    public byte[] GetBytes()
    {
        uint num = 0u;

        EmoEngine.errorHandler(EdkDll.EE_GetUserProfileSize(this.hProfile, out num));
        byte[] array = new byte[num];
        EmoEngine.errorHandler(EdkDll.EE_GetUserProfileBytes(this.hProfile, array, num));
        return(array);
    }