mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
13 lines
317 B
C#
13 lines
317 B
C#
|
|
using System.Linq;
|
|||
|
|
|
|||
|
|
namespace MinecraftClient
|
|||
|
|
{
|
|||
|
|
public static class ExtensionMethods
|
|||
|
|
{
|
|||
|
|
public static string ToUnderscoreCase(this string str)
|
|||
|
|
{
|
|||
|
|
return string.Concat(str.Select((x, i) => i > 0 && char.IsUpper(x) ? "_" + x.ToString() : x.ToString())).ToLower();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|