Skip to main content

Posts

Showing posts with the label #region c#

c# notes : #region

#region allows to specify block codes to be expanded and collapse convenient for longer code files. must be closed with #endregion eg:          #region FB.Login() example          public void FBLogin {          }        #endregion         expected result in editor