53 lines
1.0 KiB
Plaintext
53 lines
1.0 KiB
Plaintext
include::../description.adoc[]
|
|
|
|
include::../ask-yourself.adoc[]
|
|
|
|
include::../recommended.adoc[]
|
|
|
|
== Sensitive Code Example
|
|
|
|
----
|
|
Imports System
|
|
Public Class C
|
|
Public Sub Main()
|
|
Dim x = Console.[In] ' Sensitive
|
|
Console.Read() ' Sensitive
|
|
Console.ReadKey() ' Sensitive
|
|
Console.ReadLine() ' Sensitive
|
|
Console.OpenStandardInput() ' Sensitive
|
|
End Sub
|
|
End Class
|
|
----
|
|
|
|
== Exceptions
|
|
|
|
This rule does not raise issues when the return value of the ``++Console.Read++`` ``++Console.ReadKey++`` or ``++Console.ReadLine++`` methods is ignored.
|
|
|
|
----
|
|
Imports System
|
|
|
|
Public Class C
|
|
Public Sub Main()
|
|
Console.ReadKey() ' Return value is ignored
|
|
Console.ReadLine() ' Return value is ignored
|
|
End Sub
|
|
End Class
|
|
----
|
|
|
|
include::../see.adoc[]
|
|
|
|
ifdef::env-github,rspecator-view[]
|
|
|
|
'''
|
|
== Implementation Specification
|
|
(visible only on this page)
|
|
|
|
include::../message.adoc[]
|
|
|
|
'''
|
|
== Comments And Links
|
|
(visible only on this page)
|
|
|
|
include::../comments-and-links.adoc[]
|
|
endif::env-github,rspecator-view[]
|