Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
externl committed Jun 3, 2024
1 parent 032980a commit 259049a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .globalconfig
Original file line number Diff line number Diff line change
Expand Up @@ -263,3 +263,9 @@ dotnet_diagnostic.IDE0290.severity = none

# CA1859: use concrete types when possible for improved performance
dotnet_diagnostic.CA1859.severity = none

# SA1600: Elements should be documented
dotnet_diagnostic.SA1600.severity = none

# SA1601: Partial elements should be documented
dotnet_diagnostic.SA1601.severity = none
1 change: 1 addition & 0 deletions csharp/Ice/minimal/Printer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
public class Printer : HelloDisp_
{
/// <summary>Prints a message to the standard output.</summary>
/// <param name="current">The current object of the corresponding incoming request.</param>
public override void sayHello(Ice.Current current)
{
Console.WriteLine("Hello World!");
Expand Down
4 changes: 2 additions & 2 deletions csharp/Ice/partial/Measurements.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public partial record struct Distance
{
public double Yards
{
get
readonly get
{
return value * YardConversionFactor;
}
Expand All @@ -22,7 +22,7 @@ public double Yards

public double Meters
{
get
readonly get
{
return value;
}
Expand Down

0 comments on commit 259049a

Please sign in to comment.