mirror of
https://github.com/blueskythlikesclouds/SonicAudioTools.git
synced 2024-11-27 17:00:53 +01:00
22 lines
378 B
C#
22 lines
378 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.IO;
|
|
|
|
namespace SonicAudioLib
|
|
{
|
|
public class Helpers
|
|
{
|
|
public static long Align(long value, long alignment)
|
|
{
|
|
while ((value % alignment) != 0)
|
|
{
|
|
value++;
|
|
}
|
|
|
|
return value;
|
|
}
|
|
}
|
|
}
|