ufcpp / UfcppSample

http://ufcpp.net/ 向けのサンプル
Apache License 2.0
133 stars 41 forks source link

ref struct interfaces #463

Open ufcpp opened 1 month ago

ufcpp commented 1 month ago

https://ufcpp.net/study/csharp/resource/refstruct/ に追記。

https://ufcpp.net/blog/2024/2/ref-struct-interface/ をベースに。

ページ改めてもいいかも。

ufcpp commented 1 month ago

memo:

ref struct Node<T>
{
    public T Value;
    public ref Node<T> Next; // これ行けるようになるんだっけ?
}