What is the difference between /// and #region ...#endregion statements in c#? Which one the best?
///
#region ...#endregion
/// -> can be used for some comments
#region ...#endregion -> can be used to mark particular set of code to a region,easy to reffer
#region MainMethod /// /// Comments /// static void Main() { //Your code } #endregion