You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
315 B
C#
17 lines
315 B
C#
3 weeks ago
|
namespace Fusion.Addons.SimpleKCC
|
||
|
{
|
||
|
using System;
|
||
|
using System.Runtime.CompilerServices;
|
||
|
|
||
|
public static partial class KCCArrayExtensions
|
||
|
{
|
||
|
// PUBLIC METHODS
|
||
|
|
||
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||
|
public static void Clear(this Array array)
|
||
|
{
|
||
|
Array.Clear(array, 0, array.Length);
|
||
|
}
|
||
|
}
|
||
|
}
|