13 lines
207 B
C#
13 lines
207 B
C#
|
using System;
|
|||
|
|
|||
|
namespace AOC2021.Helper
|
|||
|
{
|
|||
|
public static class AOCExtensions
|
|||
|
{
|
|||
|
public static int ToInt(this string str)
|
|||
|
{
|
|||
|
return Convert.ToInt32(str);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|