Update:
The usage you see is triple-slash comments(one type of XML documention comment). If you want the following to achieve the same thing
// Tip for information string information; information = "Speed of light is 300000 Km per Second";
Then the answer is NO. There doesn't have such feature.
Original Answer:
This is a type of XML documentation comment, specifically, it's called "triple-slash comments"
Just like its name, you only need to press the slash key three times on the line before the definition after defining the property or method, and VS will automatically fill in the content for you (of course, you can also write it all by yourself.)
Triple-slash comment is usually used to describe the role and usage of members such as methods, attributes, classes, etc.
Here is an example, I think it will help you:
using System; namespace xxx { internal class Program { static void Main(string[] args) { var bowman = new Person { Name = "Bowman", Age = 25, Information = "xxx" }; var result = bowman.SayHello(); Console.WriteLine(result); } } public class Person { /// <summary> /// The name of the person. /// </summary> public string Name { get; set; } /// <summary> /// The age of the person. /// </summary> public int Age { get; set; } /// <summary> /// Speed of light is 300000 Km per Second /// </summary> public string Information { get; set; } /// <summary> /// This method is to say hello. /// </summary> /// <returns></returns> public string SayHello() { return this.Name + " Say Hello to you."; } } }
And the performance:

The example is written by me casually, mainly to give you a demonstration, the official document is here:
XML documention comments