|
-
November 5th, 2011, 09:36 PM
#1
how to compile C function in C-Sharp program?
Hi,
I do not know how to code in C Sharp. I want to add a C function to an existing, working C Sharp program, and compile it. Let's say the C function is something like this:
Test_Function ( )
{
/* C codes go here. */
}
What do I need to do to make this C Sharp program compile with the above test C function added? I tried adding standard C libraries at the top of the C Sharp program, but it won't compile.
#include "stdio.h"
#include "stdlib.h"
#include "string.h"
Please help. Thank you.
-
November 6th, 2011, 06:26 AM
#2
Re: how to compile C function in C-Sharp program?
You cannot mix two programming languages which require two different compilers inside the same project like that.
www.monotorrent.com For all your .NET bittorrent needs
NOTE: My code snippets are just snippets. They demonstrate an idea which can be adapted by you to solve your problem. They are not 100% complete and fully functional solutions equipped with error handling.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|