Skip to content

Commit

Permalink
Merge 48b8f77 into 643f73a
Browse files Browse the repository at this point in the history
  • Loading branch information
yufeih authored Jan 21, 2024
2 parents 643f73a + 48b8f77 commit 09b47a9
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
27 changes: 27 additions & 0 deletions samples/seed/dotnet/project/Project/Class1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -214,3 +214,30 @@ public void MyOperation() {}
/// <summary>Another nice operation</summary>
public void MoreOperations() {}
}

/// <summary>
/// Class representing a dog.
/// </summary>
public class Dog
{
/// <summary>
/// Name of the dog.
/// </summary>
public string Name { get; }

/// <summary>
/// Age of the dog.
/// </summary>
public int Age { get; }

/// <summary>
/// Constructor.
/// </summary>
/// <param name="name">Name of the dog.</param>
/// <param name="age">Age of the dog.</param>
public Dog(string name, int age)
{
Name = name;
Age = age;
}
}
1 change: 1 addition & 0 deletions templates/common/ManagedReference.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@ function handleItem(vm, gitContribute, gitUrlPattern) {

// set to null incase mustache looks up
vm.summary = vm.summary || "";
vm.description = vm.description || "";
vm.remarks = vm.remarks || "";
vm.conceptual = vm.conceptual || "";
vm.syntax = vm.syntax || "";
Expand Down

0 comments on commit 09b47a9

Please sign in to comment.