Files
SeamlessClient/Utilities/UtilExtensions.cs
2023-08-25 14:19:50 -05:00

16 lines
316 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SeamlessClient.Utilities
{
public static class UtilExtensions
{
public static dynamic CastToReflected(this object o, Type type) => Convert.ChangeType(o, type);
}
}