AdventOfCode/AdventOfCode/Common/AOCExtensions.cs

13 lines
207 B
C#
Raw Normal View History

2022-12-08 15:39:18 -08:00
using System;
namespace AOC2021.Helper
{
public static class AOCExtensions
{
public static int ToInt(this string str)
{
return Convert.ToInt32(str);
}
}
}