What is more fasten, AsSpan or Substring in C#?
Dec 4, 2022 · 2 min read · In general, AsSpan is faster than Substring in C#. This is because AsSpan returns a span (a lightweight structure that represents a contiguous region of memory) that refers to a portion of the original string, whereas Substring creates a new string o...
SFrancesco commented











