Example #1
0
 /// <summary>
 /// Get the <see cref="Variant.Type"/> that corresponds for the given <see cref="Type"/>.
 /// </summary>
 /// <returns>The <see cref="Variant.Type"/> for the given <paramref name="type"/>.</returns>
 public static Variant.Type TypeToVariantType(Type type)
 {
     return(Marshaling.ConvertManagedTypeToVariantType(type, out bool _));
 }