mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-23 16:48:23 -05:00
18 lines
443 B
C#
18 lines
443 B
C#
using System;
|
|
using System.Text;
|
|
|
|
namespace UnityAtoms
|
|
{
|
|
internal static class StringExtensions
|
|
{
|
|
public static int ToInt(this string str, int def)
|
|
{
|
|
int num;
|
|
return int.TryParse(str, out num) ? num : def;
|
|
}
|
|
|
|
public static string Repeat(this string str, int times)
|
|
=> times == 1 ? str : new StringBuilder(str.Length * times).Insert(0, str, times).ToString();
|
|
}
|
|
}
|