Is there a code snippet in Visual Studio / C # similar to the Xcode #pragma mark ?
#pragma mark
eg. When setting up #pragma mark Some Part Of Code in Xcode, the "Part of code" highlighted in bold is highlighted in the drop-down list of method enumerations, so you can use it to group methods according to their functionality and find them faster if necessary.
#pragma mark Some Part Of Code
I think you are looking for #region ?
#region
Else, C # has #pragma , but from your description it looks like a region
#pragma
If you are working in C # with Xamarin Studio,
Go to:Xamarin settings → Text editor → General → Then enable folding code
Go to:
Xamarin settings → Text editor → General → Then enable folding code
Then you can use
#region SomeRegion //...Group of code... #endregion // end of MyRegion
Source: https://habr.com/ru/post/1389653/More articles:When do I need to split a large database table? - performanceCheck registration on Facebook: permission to access the resource "Arbiter" - validationhttps://translate.googleusercontent.com/translate_c?depth=1&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1389650/qtdesigner-adding-splitter-layouts-to-larger-layouts&usg=ALkJrhhNpm3EZ73FLbmLzrIHzvxMAHNO2whttps://translate.googleusercontent.com/translate_c?depth=1&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1389651/deploy-snapshot-artifact-and-sources-to-nexus-from-maven-command-line&usg=ALkJrhhhazruwuadNwBth7vck3mKWT3FJAAndroid Lifecycle Details - androidGet Dom element from jquery plugin extension - jquerySource code and line count in netbeans 7.x? - javaSencha touch 2 - Unable to insert a list inside a panel or TabPanel - extjsAndroid drawing method is slow - androidDeclare an array of objects in php - phpAll Articles