/
aprogrammer
/
dotnet-docs
Обзор
Документация
Войти
/
aprogrammer
/
dotnet-docs
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
docs/csharp/whats-new/tutorials/snippets/staticinterfaces/Utilities.cs
9 строк
313 B
Genevieve Warren
Generic math docs (#30379)
03 авг 2022, 02:51
Не верифицирован
03 авг 2022, 02:51
183fd28
Код
Авторство
О чём код?
using System.Numerics; public static class Utilities { // <MidPoint> public static T MidPoint<T>(T left, T right) where T : INumber<T> => (left + right) / T.CreateChecked(2); // note: the addition of left and right may overflow here; it's just for demonstration purposes // </MidPoint> }