Sahil Dev

Sahil Dev

  • NA
  • 77
  • 6.8k

Understanding this code snippet

Mar 10 2016 6:07 AM
Can anyone tell me what does this part of the code do?
 
what is meant by 'get set' here?
 

 

 

  1. public struct XYZ     
  2.  {  
  3.   
  4.   
  5.         public bool A { getset; }  
  6.         public bool B{ getset; }  
  7.         public bool C { getset; }  
  8.   
  9.     }  

 

 


Answers (18)