Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I am looking for a C# tool or Visual Studio Extension to visualize the typed api of all the library I use (because there is not type in the msdn doc, and some library have no apidoc).
What do you mean by typed api ? You can use the Object browser in Visual Studio if you want to look into the signatures of the dll you are referencing.
Or if you want to generate documentation for a library you can use tools like GhostDoc
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
What library do I need in order to use all PKCS#11 functions (like C_INITIALIZE, C_FINALIZE).
I've searched a lot but did not find anything.
Also my project must be in WINDOWS, Visual Studio.
Library implementing PKCS#11 API is usually provided by the vendor of your cryptographic device (smartcard, token, HSM...). Alternatively you can also use pure software PKCS#11 implementation such as SoftHSM.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
Where can I find the Microsoft Kinect SDK API list for C# similar to the one provided in Java Docs where it consists of all the Classes, Packages...etc in the SDK
Try here, googling on kinect microsoft sdk msdn should have been enough to find it.
http://msdn.microsoft.com/en-us/library/microsoft.kinect.aspx
C++ and C#/VB.NET reference documentation:
http://msdn.microsoft.com/en-us/library/jj572480.aspx
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I am looking for a .net C# library that can do translations. I tried googles one but they charge money now for it.
I am looking for something that can preferably auto detect languages, translate blocks of text or download the entire page and convert it.
This all has to of course be done through code.
Thanks
Have you tried using bing?
http://www.microsofttranslator.com/
There is a translator .net library on codeplex that uses bing: http://translateit.codeplex.com/
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I get a library with two DLLs, but without the detailed document. I want get a quick view of its class design.
I know that I can use the Object Browser in Visual Studio to look into them. But it is not very intuitive. Is there a tool that displays the dependency graph of the library, or more formally the UML diagram. The input is just the DLL.
Thanks.
Depending on the version of Visual Studio you have, you can use the class designer.
I assume you're after the class diagram? Other UML diagrams are very hard to reverse engineer.
You could have a try with several extensions for Visual Studio
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I am looking for something that will iterate over our model and extract each objects properties in order to build a documentation wiki. Is there a tool out there which will do such a thing?
Basically I do not want to have to extract all of our documentation out of the projects by hand.
sandcastle builds webpages, but they aren't editable as a wiki. Is that the kind of thing you are looking for?