15 lines
146 B
Plaintext
15 lines
146 B
Plaintext
== Compliant Solution
|
|
|
|
[source,text]
|
|
----
|
|
using System;
|
|
|
|
namespace MyLibrary
|
|
{
|
|
public interface MyInterface
|
|
{
|
|
void Foo();
|
|
}
|
|
}
|
|
----
|