Click here to Skip to main content
15,889,992 members
Home / Discussions / C#
   

C#

 
AnswerRe: win7,sc delete, windows servis,process start Pin
Not Active30-Sep-10 3:54
mentorNot Active30-Sep-10 3:54 
GeneralRe: win7,sc delete, windows servis,process start Pin
tomorrow_ft30-Sep-10 3:58
tomorrow_ft30-Sep-10 3:58 
AnswerRe: win7,sc delete, windows servis,process start Pin
Bernhard Hiller30-Sep-10 4:18
Bernhard Hiller30-Sep-10 4:18 
GeneralRe: win7,sc delete, windows servis,process start Pin
tomorrow_ft30-Sep-10 4:21
tomorrow_ft30-Sep-10 4:21 
GeneralRe: win7,sc delete, windows servis,process start Pin
Dave Kreskowiak30-Sep-10 5:33
mveDave Kreskowiak30-Sep-10 5:33 
GeneralRe: win7,sc delete, windows servis,process start Pin
Sunil G 31-Oct-10 18:35
Sunil G 31-Oct-10 18:35 
GeneralRe: win7,sc delete, windows servis,process start Pin
Dave Kreskowiak1-Oct-10 18:37
mveDave Kreskowiak1-Oct-10 18:37 
QuestionUsing C++ class in C# Pin
Nematjon Rahmanov30-Sep-10 3:36
Nematjon Rahmanov30-Sep-10 3:36 
Hi.

In my project have 3 module. 1 and 2 nd module writen in c++ and 3th module - Application module written in C#.

Every module different parts of projects.

My first module have like that class :
class __declspec(dllexport) MyClass1
{
public :
	int n;
	MySimple1()
	{
		n=0;
	}
	~MySimple1()
	{
	}

	int Plus(int a,int b)
	{

		return n=(a+b);
	}

};


In my second module have like that class.
And this class use 1 th class.
class __declspec(dllexport) MyClass2
{
public :
	
	MySimple2(MyClass1 a)
	{
		
	}
	~MySimple2()
	{
	}

	...

};



Can i use MyClass1 fields (i know how to use methods) in my C# app?
In my C# app , how i can send MyClass1 like parameter to 2nd class ?
How i can use like that in my C# app ?
public MyClass1 my1=new MyClass1();
int n=my1.Plus(10,12);

MySimple2(my1); // calling through PInvoke.


Thanks.
We are haven't bug,just temporarily undecided problems.

AnswerRe: Using C++ class in C# Pin
Not Active30-Sep-10 3:51
mentorNot Active30-Sep-10 3:51 
QuestionRe: Using C++ class in C# Pin
Nematjon Rahmanov30-Sep-10 3:57
Nematjon Rahmanov30-Sep-10 3:57 
AnswerRe: Using C++ class in C# Pin
Saksida Bojan30-Sep-10 6:54
Saksida Bojan30-Sep-10 6:54 
GeneralRe: Using C++ class in C# [modified] Pin
Ziad Elmalki30-Sep-10 23:04
Ziad Elmalki30-Sep-10 23:04 
AnswerRe: Using C++ class in C# Pin
cepi691-Oct-10 5:08
cepi691-Oct-10 5:08 
QuestionActive directory permissions management Pin
allstarmisho30-Sep-10 1:44
allstarmisho30-Sep-10 1:44 
AnswerRe: Active directory permissions management Pin
Eddy Vluggen30-Sep-10 6:29
professionalEddy Vluggen30-Sep-10 6:29 
QuestionHow to compare the image in datagridviewImage column Pin
NarVish30-Sep-10 0:31
NarVish30-Sep-10 0:31 
AnswerRe: How to compare the image in datagridviewImage column Pin
Henry Minute30-Sep-10 1:51
Henry Minute30-Sep-10 1:51 
GeneralRe: How to compare the image in datagridviewImage column Pin
NarVish30-Sep-10 18:56
NarVish30-Sep-10 18:56 
GeneralRe: How to compare the image in datagridviewImage column Pin
Henry Minute30-Sep-10 18:57
Henry Minute30-Sep-10 18:57 
QuestionConsole Apps for Assemblyinfo.cs version number update. Pin
123!@#aruk29-Sep-10 18:57
123!@#aruk29-Sep-10 18:57 
AnswerRe: Console Apps for Assemblyinfo.cs version number update. Pin
SeMartens29-Sep-10 20:51
SeMartens29-Sep-10 20:51 
GeneralRe: Console Apps for Assemblyinfo.cs version number update. Pin
123!@#aruk30-Sep-10 20:39
123!@#aruk30-Sep-10 20:39 
AnswerRe: Console Apps for Assemblyinfo.cs version number update. Pin
Pete O'Hanlon29-Sep-10 21:54
mvePete O'Hanlon29-Sep-10 21:54 
AnswerRe: Console Apps for Assemblyinfo.cs version number update. Pin
PIEBALDconsult30-Sep-10 3:26
mvePIEBALDconsult30-Sep-10 3:26 
QuestionWPF MVVM Navigation Pin
eddieangel29-Sep-10 11:55
eddieangel29-Sep-10 11:55 

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.