@@ -108,7 +108,7 @@ public Text(int length, char defaultCharacter = ' ')
108108 text = MemoryAddress . AllocatePointer < TextPointer > ( ) ;
109109 text ->length = length ;
110110 text ->buffer = MemoryAddress . Allocate ( length * sizeof ( char ) ) ;
111- new Span < char > ( text ->buffer . Pointer , length ) . Fill ( defaultCharacter ) ;
111+ new Span < char > ( text ->buffer . pointer , length ) . Fill ( defaultCharacter ) ;
112112 }
113113
114114 /// <summary>
@@ -192,7 +192,7 @@ public readonly Span<char> AsSpan()
192192 {
193193 MemoryAddress . ThrowIfDefault ( text ) ;
194194
195- return new Span < char > ( text ->buffer . Pointer , text ->length ) ;
195+ return new Span < char > ( text ->buffer . pointer , text ->length ) ;
196196 }
197197
198198 /// <summary>
@@ -212,7 +212,7 @@ public readonly void CopyTo(Span<char> destination)
212212 {
213213 MemoryAddress . ThrowIfDefault ( text ) ;
214214
215- new Span < char > ( text ->buffer . Pointer , text ->length ) . CopyTo ( destination ) ;
215+ new Span < char > ( text ->buffer . pointer , text ->length ) . CopyTo ( destination ) ;
216216 }
217217
218218 /// <summary>
@@ -228,7 +228,7 @@ public readonly void CopyFrom(ReadOnlySpan<char> source)
228228 MemoryAddress . Resize ( ref text ->buffer , source . Length * sizeof ( char ) ) ;
229229 }
230230
231- source . CopyTo ( new Span < char > ( text ->buffer . Pointer , source . Length ) ) ;
231+ source . CopyTo ( new Span < char > ( text ->buffer . pointer , source . Length ) ) ;
232232 }
233233
234234 /// <summary>
@@ -244,7 +244,7 @@ public readonly void CopyFrom(string source)
244244 MemoryAddress . Resize ( ref text ->buffer , source . Length * sizeof ( char ) ) ;
245245 }
246246
247- source . AsSpan ( ) . CopyTo ( new Span < char > ( text ->buffer . Pointer , source . Length ) ) ;
247+ source . AsSpan ( ) . CopyTo ( new Span < char > ( text ->buffer . pointer , source . Length ) ) ;
248248 }
249249
250250 /// <summary>
@@ -260,7 +260,7 @@ public readonly void CopyFrom(ASCIIText256 source)
260260 MemoryAddress . Resize ( ref text ->buffer , source . Length * sizeof ( char ) ) ;
261261 }
262262
263- source . CopyTo ( new Span < char > ( text ->buffer . Pointer , source . Length ) ) ;
263+ source . CopyTo ( new Span < char > ( text ->buffer . pointer , source . Length ) ) ;
264264 }
265265
266266 /// <summary>
@@ -340,7 +340,7 @@ public readonly Span<char> Slice(int start)
340340 {
341341 MemoryAddress . ThrowIfDefault ( text ) ;
342342
343- return new Span < char > ( text ->buffer . Pointer + start * sizeof ( char ) , text ->length - start ) ;
343+ return new Span < char > ( text ->buffer . pointer + start * sizeof ( char ) , text ->length - start ) ;
344344 }
345345
346346 /// <summary>
@@ -350,7 +350,7 @@ public readonly Span<char> Slice(int start, int length)
350350 {
351351 MemoryAddress . ThrowIfDefault ( text ) ;
352352
353- return new Span < char > ( text ->buffer . Pointer + start * sizeof ( char ) , length ) ;
353+ return new Span < char > ( text ->buffer . pointer + start * sizeof ( char ) , length ) ;
354354 }
355355
356356 /// <summary>
@@ -898,7 +898,7 @@ public readonly long GetLongHashCode()
898898 unchecked
899899 {
900900 long hash = 3074457345618258791 ;
901- Span < char > text = new ( this . text ->buffer . Pointer , this . text ->length ) ;
901+ Span < char > text = new ( this . text ->buffer . pointer , this . text ->length ) ;
902902 for ( int i = 0 ; i < text . Length ; i ++ )
903903 {
904904 hash += text [ i ] ;
0 commit comments