字符串混淆和函数名称
我可以更改以下代码并安全地对其进行混淆吗?
或者我必须将其排除在混淆之外(例如 stackoverflow 2555355 混淆- asp-net-dll / 2555497#2555497 )
Dim fontNames As New ArrayList
. . .
Me.myCtrlCmbFontName.DataSource = fontNames
Me.myCtrlCmbFontName.DisplayMember = "mcpGetName" ' <- Here I get a warning
Public ReadOnly Property mcpGetName() As String ' <- because of this
Get
Return "xxx"
End Get
End Property
Can I change the following code and safely obfuscate it ?
or that I must exclude it from obfuscating (e.g. stackoverflow 2555355 obfuscating-asp-net-dll / 2555497#2555497 )
Dim fontNames As New ArrayList
. . .
Me.myCtrlCmbFontName.DataSource = fontNames
Me.myCtrlCmbFontName.DisplayMember = "mcpGetName" ' <- Here I get a warning
Public ReadOnly Property mcpGetName() As String ' <- because of this
Get
Return "xxx"
End Get
End Property
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果字符串值的文本大小写不同,您可能会很幸运......
尝试:
You may have luck if the string value is of a different text case...
try:
还询问了
codeproject 3573871 String-obfuscation-and-function-names< /a>
答案:我需要将其排除在混淆之外。
also asked in
codeproject 3573871 String-obfuscation-and-function-names
Answer: I need to exclude it from obfuscation.