MemoryMarshal.CreateSpan<T>(T, Int32) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
在一般受控物件上建立新的範圍。
public:
generic <typename T>
static Span<T> CreateSpan(T % reference, int length);
public static Span<T> CreateSpan<T> (ref T reference, int length);
public static Span<T> CreateSpan<T> (scoped ref T reference, int length);
static member CreateSpan : 'T * int -> Span<'T>
Public Shared Function CreateSpan(Of T) (ByRef reference As T, length As Integer) As Span(Of T)
類型參數
- T
數據項的類型。
參數
- reference
- T
資料的參考。
- length
- Int32
reference
包含的 T
元素數目。
傳回
範圍。
備註
如果 Managed 物件的一部分代表固定數位,這個方法會很有用。
警告
這個方法應該謹慎使用。 這是危險的, length
因為未檢查自變數。 即使 ref
已標註 為 scoped
,它仍會儲存到傳回的範圍,而且傳回範圍的存留期不會經過驗證以取得安全性,即使範圍感知語言也一樣。