C# で同じ機能を持つ 2 つのインターフェイスを実装できますか
interface TestInterface
{
public function testMethod();
}
interface TestInterface2
{
public function testMethod();
}
class TestClass implements TestInterface, TestInterface2
{
}
これは可能ですか?
ここのphpでは不可能であることがわかりました