Remove unnecessary System, System.Collections.Generic, System.IO, and System.Linq using directives that were flagged by IDE analyzers. Also includes minor whitespace and code style normalization. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
13 lines
200 B
C#
13 lines
200 B
C#
namespace PepLib
|
|
{
|
|
public static class Generic
|
|
{
|
|
public static void Swap<T>(ref T a, ref T b)
|
|
{
|
|
T c = a;
|
|
a = b;
|
|
b = c;
|
|
}
|
|
}
|
|
}
|