开发者

OpenSSL .NET wrapper adding classes and methods

开发者 https://www.devze.com 2023-02-16 02:06 出处:网络
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 compil

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.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号