1
0
mirror of https://github.com/oliverbooth/X10D synced 2024-11-09 23:25:43 +00:00

Fix xmldoc and using directive

- <see cref="Random"/> points to internal instance, not type
- System.Globalization required for CultureInfo
This commit is contained in:
Oliver Booth 2021-03-09 13:14:29 +00:00
parent 013e633fce
commit 9d0c300250

View File

@ -1,12 +1,13 @@
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;
namespace X10D.RandomExtensions
{
/// <summary>
/// Extension methods for <see cref="Random" />.
/// Extension methods for <see cref="System.Random" />.
/// </summary>
public static class RandomExtensions
{