-
Notifications
You must be signed in to change notification settings - Fork 0
/
Utils.cs
38 lines (35 loc) · 1.16 KB
/
Utils.cs
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PETR_Robot
{
public static class Utils
{
public static T GetEnvironmentVariable<T>(string name)
{
string? value = Environment.GetEnvironmentVariable(name);
if (value == null)
{
throw new InvalidOperationException($"{name} é necessário mas não foi encontrado.");
}
try
{
return (T)Convert.ChangeType(value, typeof(T));
}
catch (InvalidCastException)
{
throw new InvalidOperationException($"Não foi possível converter {name} para o tipo {typeof(T).Name}.");
}
catch (FormatException)
{
throw new InvalidOperationException($"{name} deve ser do tipo {typeof(T).Name} válido.");
}
}
public static string[] GetEnvironmentStringArray(string name)
{
return GetEnvironmentVariable<string>(name).Split(new[] { "\r\n", "\n" }, StringSplitOptions.RemoveEmptyEntries);
}
}
}