Skip to content

Instantly share code, notes, and snippets.

@taefreeze
Created March 7, 2021 01:28
Show Gist options
  • Save taefreeze/14bef24f36b5b7856a579b708229259d to your computer and use it in GitHub Desktop.
Save taefreeze/14bef24f36b5b7856a579b708229259d to your computer and use it in GitHub Desktop.
Struct program
struct Books
{
public string title;
public string author;
public string subject;
public int book_id;
};
Books test;
test.title = "Struct Sample";
test.author = "Tae Chanwit";
test.subject = "Structure in dotnet5 C#";
test.book_id = 8211;
Console.WriteLine( "title :", test.title);
Console.WriteLine("author :", test.author);
Console.WriteLine("subject :", test.subject);
Console.WriteLine("book_id :", test.book_id);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment