1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-20 17:08:00 +02:00

Merge pull request #106 from damianday/List-Front

Added List.Front
This commit is contained in:
Brian Fiete 2020-04-08 10:40:22 -07:00 committed by GitHub
commit 2f7566c0a4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -227,6 +227,15 @@ namespace System.Collections.Generic
#endif
}
}
public ref T Front
{
get
{
Debug.Assert(mSize != 0);
return ref mItems[0];
}
}
public ref T Back
{