Answers for "structure c#"

C#
0

c# structure

struct Books{
	string author;
  	string title;
}

class StructureExample{
	static void Main(String[] args){
    	Books b1 = new Books();
      	b1.author = "J.K. Rowling";
      	b1.title = "Harry Potter";
    }
}
Posted by: Guest on August-22-2021

C# Answers by Framework

Browse Popular Code Answers by Language