Code & Deploy
Code
Models
Repos
Sign in
@matheusbsbs
/
matheus-bagliano
matheus-bagliano
/
t
/
t4018
/
csharp-method-explicit
Code
Commits
Pulls
CI/CD
82,027
next
bisect
jch
maint
master
next
seen
test
todo
text
12 lines
164 Bytes
Copy permalink
Copy
Raw
1
using System;
2
3
class Example : IDisposable
4
{
5
void IDisposable.Dispose() // RIGHT
6
{
7
// Filler
8
// Filler
9
10
// ChangeMe
11
}
12
}