12 lines
146 B
C#
12 lines
146 B
C#
|
// CS8049: Implemented interfaces cannot have arguments
|
||
|
// Line: 6
|
||
|
|
||
|
using System;
|
||
|
|
||
|
class ID () : IDisposable ()
|
||
|
{
|
||
|
public void Dispose ()
|
||
|
{
|
||
|
}
|
||
|
}
|