diff --git a/Raylib-cs/types/Raylib.Utils.cs b/Raylib-cs/types/Raylib.Utils.cs
index 8c5647a..edcf5c7 100644
--- a/Raylib-cs/types/Raylib.Utils.cs
+++ b/Raylib-cs/types/Raylib.Utils.cs
@@ -869,28 +869,6 @@ namespace Raylib_cs
return MeasureTextEx(font, str1.AsPointer(), fontSize, spacing);
}
- /// Append text at specific position and move cursor!
- public static void TextAppend(string text, string append, int position)
- {
- using var str1 = text.ToUTF8Buffer();
- using var str2 = append.ToUTF8Buffer();
- TextAppend(str1.AsPointer(), str2.AsPointer(), &position);
- }
-
- /// Get Pascal case notation version of provided string
- public static string TextToPascal(string text)
- {
- using var str1 = text.ToUTF8Buffer();
- return Utf8StringUtils.GetUTF8String(TextToPascal(str1.AsPointer()));
- }
-
- /// Get integer value from text (negative values not supported)
- public static int TextToInteger(string text)
- {
- using var str1 = text.ToUTF8Buffer();
- return TextToInteger(str1.AsPointer());
- }
-
/// Get all codepoints in a string, codepoints count returned by parameters
public static int[] LoadCodepoints(string text, ref int count)
{