Skip to content

Instantly share code, notes, and snippets.

View ravshanm's full-sized avatar

Ravshanjon Mirzojonov ravshanm

  • Paximum - Global Travel Marketplace
  • Antalya, Turkey
View GitHub Profile
@ravshanm
ravshanm / StringExtensions.cs
Created August 3, 2021 15:17
Fast and memory-efficient string reverse
public static class StringExtensions
{
public static string DirectReverse(this string text)
{
if (text == null)
throw new NullReferenceException();
if (text == string.Empty)
return text;