2025年11月3日

C# 委託(Delegate)與事件(Event)筆記

摘要: 📝 C# 委託(Delegate)與事件(Event)筆記 1️⃣ 委託(Delegate) 定義 委託是一種方法指標(方法的變數),可以存放、傳遞方法。 // 定義委託 delegate void MyDelegate(string message); // 方法符合委託簽名 void SayH 阅读全文

posted @ 2025-11-03 03:26 lamkuanthedev 阅读(8) 评论(0) 推荐(0)

C# 手動管理內存

摘要: 手動管理內存實驗 本實驗旨在理解 C# 中 unsafe 指標操作與 非託管記憶體(unmanaged memory) 的使用方法,並學會如何使用 NativeMemory.Alloc 分配記憶體、直接操作位元資料、以及使用 Encoding 將 byte 資料正確轉換為字串。 二、實驗環境 開發工 阅读全文

posted @ 2025-11-03 03:26 lamkuanthedev 阅读(4) 评论(0) 推荐(0)

导航