Kaleidoscope 发表于 2025-3-25 17:49:45
Overview of C# Programming,This chapter lays the groundwork for studying C#. Since I’ll use code samples extensively throughout the text, I first need to show you what a C# program looks like and what its various parts mean.没有准备 发表于 2025-3-25 20:50:38
http://reply.papertrans.cn/47/4613/461218/461218_25.pngCholesterol 发表于 2025-3-26 02:02:57
http://reply.papertrans.cn/47/4613/461218/461218_26.png立即 发表于 2025-3-26 04:46:19
Methods,A . is a block of code with a name. You can execute the code from somewhere else in the program by using the method’s name. You can also pass data into a method and receive data back as output.Jingoism 发表于 2025-3-26 08:58:21
http://reply.papertrans.cn/47/4613/461218/461218_28.pngBridle 发表于 2025-3-26 16:33:29
Classes and Inheritance,Inheritance allows you to define a new class that incorporates and extends an already declared class.BRIEF 发表于 2025-3-26 18:30:00
http://reply.papertrans.cn/47/4613/461218/461218_30.png讨人喜欢 发表于 2025-3-26 22:36:31
http://reply.papertrans.cn/47/4613/461218/461218_31.pngobeisance 发表于 2025-3-27 01:46:50
Structs,Structs are programmer-defined data types, very similar to classes. They have data members and function members. Although structs are similar to classes, there are a number of important differences. The most important ones are the following:转向 发表于 2025-3-27 06:45:13
Enumerations,An enumeration, or enum, is a programmer-defined type, such as a class or a struct.