9 references to Min
PresentationFramework.Classic (3)
Microsoft\Windows\Themes\ClassicBorderDecorator.cs (3)
239float min = Math.Min(rgbColor.Red, Math.Min(rgbColor.Green, rgbColor.Blue)); 272saturation = Math.Max(0.0f, Math.Min(saturation, 1.0f));
System.Data.Common (1)
System\Data\Common\SingleStorage.cs (1)
109min = Math.Min(_values[record], min);
System.Drawing.Primitives (4)
System\Drawing\RectangleF.cs (4)
274float x2 = Math.Min(a.X + a.Width, b.X + b.Width); 276float y2 = Math.Min(a.Y + a.Height, b.Y + b.Height); 297float x1 = Math.Min(a.X, b.X); 299float y1 = Math.Min(a.Y, b.Y);
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\MathF.cs (1)
280return Math.Min(x, y);