mirror of
https://github.com/github/codeql.git
synced 2026-02-19 08:23:45 +01: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"))
|
|
{
|
|
// ...
|
|
}
|
|
}
|
|
}
|