Click here to Skip to main content
15,890,186 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How to convert two strings of C type

#define ABCD 0x0FA
#define EFGH "1234 beef"

into two strings of C# type

public static uint ABCD = 0x0FA;
const string EFGH = "1234 beef";

using Python or any other [scripting] language?

Particularly, I would like to convert C/C++ .h or .c files into C# .cs file using scripting language. In other words, I would like to replace a C style 'definitions' with c# style declarations and wrap new strings into c# .cs wrapper

'
using System;
namespace xxx
{
class yyy
{
....
}
}

Thank you very much.
Posted
Updated 22-Dec-09 9:30am
v2

1 solution

Perhaps you need to explain what you mean. Do you mean take a C++ source file and turn it into a C# source file ? In that case, I'd imagine that you'd use regular expressions to generate the new file from the old one.
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900