Add examples project.

This commit is contained in:
wo80
2022-02-15 17:45:36 +01:00
parent 940ae18061
commit ea6d39e1da
16 changed files with 730 additions and 27 deletions
@@ -6,7 +6,7 @@ namespace TriangleNet.Rendering.Text
using System.IO;
/// <summary>
///
/// A <see cref="StreamWriter"/> class allowing to specify the <see cref="IFormatProvider"/>.
/// </summary>
/// <remarks>
/// From http://stackoverflow.com/questions/12011789/streamwriter-and-iformatprovider
@@ -62,12 +62,6 @@ namespace TriangleNet.Rendering.Text
/// <summary>
/// Gets an object that controls formatting.
/// </summary>
public override IFormatProvider FormatProvider
{
get
{
return this.formatProvider;
}
}
public override IFormatProvider FormatProvider => formatProvider;
}
}