mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
20 lines
520 B
C#
20 lines
520 B
C#
using System.Text;
|
|
|
|
class Test
|
|
{
|
|
static void Main()
|
|
{
|
|
new StringBuilder();
|
|
new StringBuilder(12);
|
|
new StringBuilder('a'); // BAD
|
|
new StringBuilder(3, 4);
|
|
new StringBuilder(3, 'a'); // BAD
|
|
new StringBuilder('a', 'b'); // BAD
|
|
new StringBuilder("");
|
|
new StringBuilder("", 12);
|
|
new StringBuilder("", 'a'); // BAD
|
|
new StringBuilder("abc", 1, 1, 12);
|
|
new StringBuilder("abc", 1, 1, 'a'); // BAD
|
|
}
|
|
}
|