本文介绍了如何为dll添加注释(类库)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用Visual Basic,然后添加一些这样的评论



'''< summary>

'' 'Metodo que toma una frase codificada en utf8 o iso,ya sea en base64 o en

'''Quoted-Printable de la cual se obtiene un string decodificado y legible

'''< / summary>

'''< param name =FraseCodificada> Frase codificada< / param>

'''< returns> Frase decodificada< / returns>

'''< remarks>< / remarks>



我无法从另一个人看到它们使用dll的项目,

有人知道怎么做吗?



谢谢





编辑:



我今天注意到dll的摘要存储为注释行'而不是'''comment

I'm working in Visual Basic, then add some comments like this

''' <summary>
''' Metodo que toma una frase codificada en utf8 o iso, ya sea en base64 o en
''' Quoted-Printable de la cual se obtiene un string decodificado y legible
''' </summary>
''' <param name="FraseCodificada">Frase codificada</param>
''' <returns>Frase decodificada</returns>
''' <remarks></remarks>

I can't see them from another project that uses the dll,
someone knows how to do it?

thanks




I noticed today that the summary of the dll is stored as a comment line ' and not as a ''' comment

推荐答案




这篇关于如何为dll添加注释(类库)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-16 15:48