using System;struct Books {private string title;private string author;private string subject;private int book_id;
编程学习网为您整理以下代码实例,主要实现:C#类与结构,希望可以帮到各位朋友。
using System;
struct Books {
private string Title;
private string author;
private string subject;
private int book_ID;
public voID getValues(string t, string a, string s, int ID) {
Title = t;
author = a;
subject = s;
book_ID = ID;
}
public voID display() {
Console.Writeline("Title : {0}", Title);
Console.Writeline("Author : {0}", author);
Console.Writeline("Subject : {0}", subject);
Console.Writeline("Book_ID :{0}", book_ID);
}
};
public class testStructure {
public static voID Main(string[] args) {
Books Book1 = new Books(); /* Declare Book1 of type Book */
Books Book2 = new Books(); /* Declare Book2 of type Book */
/* book 1 specification */
Book1.getValues("C Programming",
"Nuha Ali", "C Programming Tutorial",6495407);
/* book 2 specification */
Book2.getValues("Telecom Billing",
"Zara Ali", "Telecom Billing Tutorial", 6495700);
/* print Book1 info */
Book1.display();
/* print Book2 info */
Book2.display();
Console.ReadKey();
}
}
织梦狗教程
本文标题为:C#类与结构


基础教程推荐
猜你喜欢
- C# abstract关键字 1970-01-01
- C# if...else语句 1970-01-01
- Dropbox-SDK-Dotnet:如何获取刷新令牌并更新访问令牌 2022-10-19
- C# break语句 1970-01-01
- C#属性条件 1970-01-01
- C#数组声明 1970-01-01
- C#正则表达式示例3 1970-01-01
- C# if运算符 1970-01-01
- C#将二进制转换为十进制 1970-01-01
- C#计算字符串中元音和辅音的数量 1970-01-01