From 65b1a608eb575c35460872ed5fbb77b6531db015 Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Fri, 6 Nov 2020 11:20:53 +0000 Subject: [PATCH] Remove SubText extension method --- Raylib-cs/Raylib.cs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Raylib-cs/Raylib.cs b/Raylib-cs/Raylib.cs index 45ed461..a36caaa 100644 --- a/Raylib-cs/Raylib.cs +++ b/Raylib-cs/Raylib.cs @@ -868,12 +868,6 @@ namespace Raylib_cs // Callback delegate used in SetTraceLogCallback to allow for custom logging public delegate void TraceLogCallback(TraceLogType logType, string text, IntPtr args); - // Extension providing SubText - public static string SubText(this string input, int position, int length) - { - return input.Substring(position, Math.Min(length, input.Length)); - } - //------------------------------------------------------------------------------------ // Window and Graphics Device Functions (Module: core) //------------------------------------------------------------------------------------