如何:宣告、產生和使用委派 (C# 程式設計手冊)
// A set of classes for handling a bookstore: namespace Bookstore { using System.Collections; // Describes a book in the book list: public struct Book { public string Title; // Title of the book. public string Author; // Author of the book. public decimal
msdn.microsoft.com |