-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Expand file tree
/
Copy pathDeadStoreOfLocalBad.cs
More file actions
55 lines (49 loc) · 912 Bytes
/
DeadStoreOfLocalBad.cs
File metadata and controls
55 lines (49 loc) · 912 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
53
54
55
using System;
class Bad
{
double ParseInt(string s)
{
var success = int.TryParse(s, out int i);
return i;
}
bool IsDouble(string s)
{
var success = double.TryParse(s, out double i);
return success;
}
double ParseDouble(string s)
{
try
{
return double.Parse(s);
}
catch (FormatException e)
{
return double.NaN;
}
}
int Count(string[] ss)
{
int count = 0;
foreach (var s in ss)
count++;
return count;
}
string IsInt(object o)
{
if (o is int i)
return "yes";
else
return "no";
}
string IsString(object o)
{
switch (o)
{
case string s:
return "yes";
default:
return "no";
}
}
}