OpenSSL .NET wrapper adding classes and methods
I downloaded the OpenSSL .NET wrapper on Visual C# 2010 express edition and I tried to modify the source code by adding methods and classes in the Crypt开发者_StackOverflow社区o library. Then I compiled it and generate new ManagedOpenSSL.DLL. I made a test program and i put this DLL as a reference to check if my modifications were done. The result is that I found my new methods (I added them to an existing classes) exist, but my new classes does not exist. Does some one know why ? thanks for any help.
Did you forget to put public
in front of your classes?
public class MyNewClass
{
}
Without seeing any of the code you added, I can only guess that either you added internal
classes and thus they cannot be seen, you are not looking in the correct namespace for your classes, or in fact you added no classes at all. Again, without your code, these are only guesses.
精彩评论