Write whole struc | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
+ 2

Write whole struc

Is it possible to get all members of struct or write all members of struct? For example: one member - Console.WriteLine(b.title); struct - Console.WriteLine(b);

20th Jan 2017, 8:54 AM
MStar
MStar - avatar
1 ответ
+ 4
You could create a method: void structDisplay(myStruct b) { Console.WriteLine(b.title); //a Console.WriteLine for each data member of the struct } structDisplay(b); 👍
29th Jan 2017, 11:13 AM
Jafca
Jafca - avatar