rspec/rules/S3992/vbnet/rule.adoc

20 lines
247 B
Plaintext
Raw Normal View History

2021-01-23 04:07:47 +00:00
include::../description.adoc[]
== Noncompliant Code Example
----
Namespace MyLibrary ' Noncompliant
End Namespace
----
== Compliant Solution
----
<Assembly: Runtime.InteropServices.ComVisible(False)>
Namespace MyLibrary
End Namespace
----