8 results for csharp
develwoutacause’s Twitter Archive—№ 1,105
@davidfowl Coming from a non #csharp background, I read this as "Look Ma, I can read from bytes! Watch!".
develwoutacause’s Twitter Archive—№ 588
@unity3d Is there any way to enable #csharp nullable reference types? I feel like it should be doable, but can't find any documentation on this.
develwoutacause’s Twitter Archive—№ 615
TIL: That the #csharp ImmutableHashSet class is *not* deterministic. Apparently iterating over a set will give you an unstable ordering. You must use ImmutableSortedSet if you want a deterministic order.
develwoutacause’s Twitter Archive—№ 603
example, you can't build an immutable, doubly linked list in #csharp without ugly runtime assertions. 🤮
develwoutacause’s Twitter Archive—№ 643
7. #csharp's type reflection is really powerful to enable APIs like GetComponent(). This makes the type system much more intuitive and easy to work with. I didn't feel like I