mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
14 lines
199 B
C#
14 lines
199 B
C#
using System;
|
|
|
|
namespace NullAlways
|
|
{
|
|
class Good
|
|
{
|
|
void DoPrint(string s)
|
|
{
|
|
if (s != null && s.Length > 0)
|
|
Console.WriteLine(s);
|
|
}
|
|
}
|
|
}
|