AssemblyCSharp.StringExtensions.SubstringAfterLast C# (CSharp) Метод

SubstringAfterLast() публичный статический Метод

public static SubstringAfterLast ( this self, string needle ) : string
self this
needle string
Результат string
        public static string SubstringAfterLast(this string self, string needle)
        {
            var index = self.IndexOf(needle);
            return index >= 0 ? self.Substring(index + needle.Length) : null;
        }