Click here to Skip to main content
15,887,683 members
Home / Discussions / Managed C++/CLI
   

Managed C++/CLI

 
QuestionSome help needed with class and this pointer Pin
nah133712-Mar-10 13:06
nah133712-Mar-10 13:06 
AnswerRe: Some help needed with class and this pointer Pin
Garth J Lancaster12-Mar-10 15:14
professionalGarth J Lancaster12-Mar-10 15:14 
GeneralRe: Some help needed with class and this pointer Pin
nah133712-Mar-10 20:57
nah133712-Mar-10 20:57 
GeneralRe: Some help needed with class and this pointer Pin
Richard MacCutchan12-Mar-10 22:21
mveRichard MacCutchan12-Mar-10 22:21 
QuestionManaged c++ std::string not accessible in unmanaged c++ Pin
Radh-e-sham11-Mar-10 20:42
Radh-e-sham11-Mar-10 20:42 
AnswerRe: Managed c++ std::string not accessible in unmanaged c++ Pin
KarstenK11-Mar-10 21:46
mveKarstenK11-Mar-10 21:46 
AnswerRe: Managed c++ std::string not accessible in unmanaged c++ Pin
T210228-Mar-10 22:10
T210228-Mar-10 22:10 
Questionsse 2-D Inner product and transpose Pin
SMART LUBOBYA4-Mar-10 4:24
SMART LUBOBYA4-Mar-10 4:24 
#include "stdafx.h"
#include <iostream>
#include <numeric>
#include <functional>
#include <vector>
#include <iterator>

using namespace std;

void mm(int**a,int **b,int **c){
__declspec(align(16)) int at[4][4],bl[4][4];
for(int j=0; j<4; ++j)
for(int i=0; i4; ++i){
at[j][i] = a[i][j]; //transpose 1st operand
bl[j][i] = b[j][i]; //local aligned non aliased
}
for (int j = 0; j < 4; ++j) //return matrix multiply4x4
for (int i=0; i < 4; ++i)
c[j][i] =inner_product(&at[i][0],&at[i][4],&bl[j][0],0.f);
}
my question: when compilling these codes it compiles well. but how can i initialise the two matrices so that i can view the output: assume a[4][4]={1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4} and b[4][4]={3,3,3,3,5,5,5,5,6,6,6,6,7,7,7,7}.please help.i am using MS VISUAL STUDIO 2008
smart lubobya

QuestionIs it possible to implement a DataSource in a mixed-mode DLL? Pin
Ron Aldrich3-Mar-10 22:38
Ron Aldrich3-Mar-10 22:38 
AnswerRe: Is it possible to implement a DataSource in a mixed-mode DLL? Pin
N a v a n e e t h4-Mar-10 4:24
N a v a n e e t h4-Mar-10 4:24 
GeneralRe: Is it possible to implement a DataSource in a mixed-mode DLL? Pin
Ron Aldrich4-Mar-10 9:53
Ron Aldrich4-Mar-10 9:53 
QuestionInterface operator bug or feature with implicit/explicit cast ? Pin
Edward Diener3-Mar-10 2:43
Edward Diener3-Mar-10 2:43 
AnswerRe: Interface operator bug or feature with implicit/explicit cast ? Pin
Nish Nishant10-Mar-10 2:58
sitebuilderNish Nishant10-Mar-10 2:58 
GeneralRe: Interface operator bug or feature with implicit/explicit cast ? Pin
Edward Diener10-Mar-10 4:13
Edward Diener10-Mar-10 4:13 
QuestionBACKGROUNDWORKER in vc++ clr net 2.0 need example Pin
ajaxswan1-Mar-10 23:15
ajaxswan1-Mar-10 23:15 
AnswerRe: BACKGROUNDWORKER in vc++ clr net 2.0 need example Pin
N a v a n e e t h1-Mar-10 23:27
N a v a n e e t h1-Mar-10 23:27 
QuestionDll Pin
MsmVc25-Feb-10 20:04
MsmVc25-Feb-10 20:04 
AnswerRe: Dll Pin
Richard MacCutchan25-Feb-10 22:14
mveRichard MacCutchan25-Feb-10 22:14 
GeneralRe: Dll Pin
MsmVc25-Feb-10 22:20
MsmVc25-Feb-10 22:20 
GeneralRe: Dll Pin
Richard MacCutchan25-Feb-10 22:59
mveRichard MacCutchan25-Feb-10 22:59 
GeneralRe: Dll Pin
MsmVc25-Feb-10 23:09
MsmVc25-Feb-10 23:09 
GeneralRe: Dll Pin
Richard MacCutchan26-Feb-10 0:08
mveRichard MacCutchan26-Feb-10 0:08 
QuestionCannot inspect... Assuming significant changes. Please help! Pin
Xpnctoc25-Feb-10 13:48
Xpnctoc25-Feb-10 13:48 
AnswerRe: Cannot inspect... Assuming significant changes. Please help! Pin
Xpnctoc26-Feb-10 3:10
Xpnctoc26-Feb-10 3:10 
GeneralRe: Cannot inspect... Assuming significant changes. Please help! Pin
Xpnctoc26-Feb-10 3:47
Xpnctoc26-Feb-10 3:47 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.