mirror of
https://github.com/github/codeql.git
synced 2026-07-10 22:15:35 +02:00
11 lines
188 B
C#
11 lines
188 B
C#
class MissedUsingOpportunityFix
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
using (StreamReader reader = File.OpenText("input.txt"))
|
|
{
|
|
// ...
|
|
}
|
|
}
|
|
}
|