Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
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.
Improve this question
Can anyone please send me the C# code for Implementing DigitalSignature with version itextSharp 5.5.1 ..
How to store the certificates from where i have to retrieve ... unable to code from Java
Start by reading http://itextpdf.com/book/digitalsignatures
Granted: the examples are in Java, but once you grasp the concept, go to the C# port of the examples. Do not use the examples before you've read the book! You need to understand the different aspects of digital signing. Merely copying/pasting code will not work!
I know that one is supposed to put a code sample in an answer, but the question is so broad that there are so many options to pick a wrong example and I don't want to guess what the OP is actually asking. Also: I've written a 100+ pages book on the subject. It would be madness to copy/paste those pages here.
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
i'm looking for some information about c# compiler like syntax diagrams , lexical analyzer , how it finds tokens , syntax analyzer and ... .
unfortunately I couldn't find anything about this ,
any helps would be highly appreciated.
Microsoft .NET Compiler Platform, knows as Roslyn was open sourced couple weeks ago.
Go to http://roslyn.codeplex.com and get source code for both C# and VB.NET compilers. You can browser the source online at http://source.rosly.codeplex.com as well.
When you have the code, you can generate diagrams, find out how it finds tokens, etc.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
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.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Improve this question
So i asked a question at: https://stackoverflow.com/questions/19167058/play-recording-into-microphone-in-real-time-for-voip
But no one apparently knew what I was looking for? So im going to try to go at this a different way. There is a way to switch your microphone/sound settings to "hardware processing" so your output plays whatever music/sound you are listening through from your speakers/headset...
How do you do this method "Programatically" ? Like I want to be able to do this in a vb.net/c# program by pressing a button to toggle it on and off.
One of the people that responded linked this video: http://www.youtube.com/watch?v=Fu371l4lFjk
Which is EXACTLY what i want to do, BUT i want to be able to do this programatically and very easily.
Make sense?
Try looking at the NAudio Library and then specifically at this question to do what I think you are trying to do.
Here's another wrapper for the Audio api's which should do what you want.
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 8 years ago.
Improve this question
I stumbled accross this site today
http://blogs.msdn.com/joelpob/archive/2004/02/16/74433.aspx
which is a C# command line FTP server, unfortunately the download points to the old gotdotnet site which is now closed ..
Does anybody know where I could find it, or another FTP Server implementation written in C# ?
Thanks
You could give this one a try: http://www.codeguru.com/csharp/csharp/cs_network/sockets/article.php/c7409
or
http://www.c-sharpcorner.com/UploadFile/psingh/FTPServerinCSharp11162005015958AM/FTPServerinCSharp.aspx
http://www.codeproject.com/Articles/380769/Creating-an-FTP-Server-in-Csharp-with-IPv6-Support
Supports FTPS (FTP over SSL) and IPv6
Personally I recommend active products maintained by nice companies, such as
http://www.remobjects.com/ip.aspx
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