Is there syntax just like #region #endregion in Kotlin?

Viewed 12637

I know I can use #region #endregion to surround a code snippets in C#, is there a similar syntax in Kotlin? Thanks!

   #region MyRegion
    protected void Page_Load(object sender, EventArgs e)
    {

    } 
    #endregion
2 Answers
Related