8 lines
292 B
Plaintext
8 lines
292 B
Plaintext
![]() |
By throwing the https://learn.microsoft.com/en-us/dotnet/api/system.notimplementedexception[`NotImplementedException`], the initial intention to add an implementation in the future is clear.
|
||
|
|
||
|
[source,vbnet]
|
||
|
----
|
||
|
Sub DoSomething() ' Compliant
|
||
|
Throw New NotImplementedException
|
||
|
End Sub
|
||
|
----
|