For simple types like integer etc, string the resource description is repeated:
```
/// <summary>
/// gets value associated with given id
/// </summary>
/// <param name="id">id of the value</param>
/// <returns>Value</returns>
public int Get(int id)
{
return 10;
}
```
Attached a snapshot with highlighted text in it.
```
/// <summary>
/// gets value associated with given id
/// </summary>
/// <param name="id">id of the value</param>
/// <returns>Value</returns>
public int Get(int id)
{
return 10;
}
```
Attached a snapshot with highlighted text in it.