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
Are there any open source algorithms in c# that solve the problem of creating a difference between two text files?
It would be super cool if it had some way of highlighting what exact areas where changed in the text document also.
There's also a c# port of Google's (Neil Fraser) diff, match and patch.
There is Menees Diff which will provide you with a C# diff implementation. The source code is included. I've used it in the past with good success wrapping it in my own implemenation.
How about this one? : DIFFPLEX
Check out diff. Here it is in the gnu project (open source, of course), and many more links to implementations are found in the wikipedia article. A comparison of different such programs is found here.
check this link
"good line by line Diff Algorithm "
http://www.codeproject.com/KB/recipes/diffengine.aspx
Related
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.
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
I would like to find some information about DVD+-VR with IMAPI2. I guess it is possible to create and burning DVD-VR with IMAPI2 but I can not find examples how to do.
Do you have some idea or some example code?
Thank you very much.
Have a look at the following C# codeproject articles:
Burning and Erasing CD/DVD/Blu-ray Media with C# and IMAPI2, By Eric Haddan.
Creating a tool with the basic functionality of Nero Burning Room.
How to Create Optical File Images using IMAPIv2.0, By dmihailescu.
Example on how to create and burn ISO image files.
Creating Audio CDs using IMAPI2, By Eric Haddan.
Shows how to use IDiscFormat2TrackAtOnce interface for creating audio CDs.
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
Does anyone know how to detect various .ogg file properties such as the number of channels, bits per channel, and the sample rate?
I would like to do this without using DirectX, can anyone recommend a library that could do it. Can anyone recommend an open-source library that could do it, which could be called from managed code ?
I think NAudio can do this, but I'm not entirely sure. I know it can encode audio to ogg, but I'm not sure if it can read existing ogg files.
A StackOverflow user has posted a piece of code for working with ogg files: https://stackoverflow.com/a/8152967/14606
Figured it out and wrote about it:
http://ellismis.com/2012/01/06/using-c-net-to-detect-ogg-vorbis-file-properties/
Don't know of a library, but the file format looks pretty sane. You should be able to write some fairly trivial code to do this.
See http://en.wikipedia.org/wiki/Ogg#File_format
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
I'm working on the implementation of Artificial Bee Colony algorithm in optimization of fuzzy c-means clustering. Can anyone provide a link for C# library or class that might help in the code of the ABC algorithm?
I think this should help. Its a ready to implement ABC algorithm library written in C++ that I had developed.
Google doesn't immediately seem to reveal a C# implementation of the ABC algorithm, though there is a Java implementation which should translate quite well to C#.
ABC souds similar to ant colony optimisation. I found this app, which you can probably get the source for if you contact the authors. It requires .NET, so it might as well be written in C#. It's not exactly what you asked for, but it's something ;)
There is a recent article in MSDN magazine that has an implementation in C#, on a specific problem. It should provide a good starting point!
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 any open source/free graph(charting) library in C/C++ or C#. Just like free JfreeChart in java.
Does anyone know it?
I'm a big fan of gnuplot... It's open-source and very versatile.
You can try Microsoft Chart Controls for Microsoft .NET Framework 3.5 for .Net.
Samples are also available.
Take a look at MathGL
DynamicDataDisplay for C# is free and a quite efficient way of charting data. It supports quick pans and zooms.