using System.Runtime.CompilerServices; namespace AntDesign.core.Extensions { public static class DataConvertionExtensions { /// /// Converts the generic type TFrom to the specified TTo type /// /// /// /// /// public static TTo Convert(TFrom fromValue) { return Unsafe.As(ref fromValue); } } }