21 lines
332 B
Plaintext
21 lines
332 B
Plaintext
include::../description.adoc[]
|
|
|
|
== Noncompliant Code Example
|
|
|
|
----
|
|
<PartCreationPolicy(CreationPolicy.Any)> ' Noncompliant
|
|
Public Class FooBar
|
|
Inherits IFooBar
|
|
End Class
|
|
----
|
|
|
|
== Compliant Solution
|
|
|
|
----
|
|
<Export(GetType(IFooBar))>
|
|
<PartCreationPolicy(CreationPolicy.Any)>
|
|
Public Class FooBar
|
|
Inherits IFooBar
|
|
End Class
|
|
----
|