Convert Header file .h to C# [closed] - c#

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am having a lot of header files (written in C) that I want to convert into C# code.
The header files contains enums, structs, methods.
I can convert them by hand, but that would take forever, so i was wondering if there is a tool to convert header files into C#.
I have tried PInvoke Interop Assistant but that only works with /clr compiled .dlls.
I have tried SWIG and that works some of the way, it succesfully generates nice enums, but the structs and methods doesn't look very good.
Is there other ways I can convert header .h files?

Related

Localization tool to find all UI strings [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
This is a bit of a reach, but i figured its worth a shot. I have been tasked with making a very large program localizable which initially was not written to support it. That means literal strings are everywhere throughout the 387 code files for the project.
Does anyone know of a tool which can generate a list of localizable strings that have the possibility to be displayed on the GUI? There is an error log with literal strings as well that is written to, and I do not want to translate those.
I know its a long shot!
ReSharper provides tools to find localizable strings and more easily move them to resource files.

Parsing C# in Java Application [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'm looking to parse a C# code base within a Java app. I need to know where classes, methods, members, etc are defined (both filename and line number). What are the best tools/libraries to do this.
It looks like the Doxygen executable could be invoked and then its output XML files could be read.
Are there any other solutions out there?
I'm doing this in Java because its for a specialized application.
From here, there is a CSharp Grammer for ANTLR. I don't know how complete it is, but it includes a preprocessor, parser and lexer.

How to extract .dll file in c#? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am new to .NET application development. Involving one project, there are three modules like Interface layer, Business layer, and Data layer; I built these and I got .dll file.
But I lost the source code of one .dll file.
I'd like to extract the .dll and get the same source code. Is it possible to extract my source code from the .dll file?
I really like JetBrains dotPeek, it's free and easy to use.
Used it for same purposes
Try ILSpy, an open-source .NET assembly browser and decompiler (it requires the .NET Framework 4.0).

Convert docx to pdf - Free [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I have seen many questions on this but still couldn't find my answer.
I want to be able to convert a docx file to a pdf file without having word installed. Is there maybe a free library out there? I really don't want to pay for this.
I read a post about XSL-FO and i found a XSL-FO to pdf converter library, not sure if that works.
So without using ofMicrosoft.Office.Interop.Word I want to convert docx to pdf

What open source C# library can read/write micro QR codes? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am looking for a C# library to generate and read micro QR codes (example below). It would be great if the llibrary could recognise a micro QR code in an image with other things in it (i.e. isolate and read the QR code.)
There is an open source project called QRCode.
QRCode library is a .NET component that can be used to encode and
decode QRCode.
Did not work very well for me.
Try google codes .net port http://zxingnet.codeplex.com/

Categories