Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

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";
    }
}
 
PREVIOUS NEXT
Tagged: #structure
ADD COMMENT
Topic
Name
2+7 =