I'm looking for a method that can round a number up to the nearest multiple of another. This is similar Quantization.
Eg. If I want to round 81 up to the nearest multiple of 20, it should return 100.
Is there a method built-in method in the .NET framework I can use for this?
The reason I'm asking for a built-in method is because there's a good chance it's been optimized already.