rspec/rules/S4023/compliant.adoc
2022-02-04 16:28:24 +00:00

15 lines
146 B
Plaintext

== Compliant Solution
[source,text]
----
using System;
namespace MyLibrary
{
public interface MyInterface
{
void Foo();
}
}
----