forked from github/codeql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDeadStoreOfLocalGood.cs
More file actions
52 lines (46 loc) · 818 Bytes
/
DeadStoreOfLocalGood.cs
File metadata and controls
52 lines (46 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
using System;
class Good
{
double ParseInt(string s)
{
int.TryParse(s, out int i);
return i;
}
bool IsDouble(string s)
{
var success = double.TryParse(s, out _);
return success;
}
double ParseDouble(string s)
{
try
{
return double.Parse(s);
}
catch (FormatException)
{
return double.NaN;
}
}
int Count(string[] ss)
{
return ss.Length;
}
string IsInt(object o)
{
if (o is int)
return "yes";
else
return "no";
}
string IsString(object o)
{
switch (o)
{
case string _:
return "yes";
default:
return "no";
}
}
}