internal static INativeInstance CreateInstance(IMontageSettings <QuantumType>?instance) { if (instance is null) { return(NativeInstance.Zero); } return(MontageSettings.CreateNativeInstance(instance)); }
internal static INativeInstance CreateInstance(MontageSettings instance) { if (instance == null) { return(NativeInstance.Zero); } return(instance.CreateNativeInstance()); }
internal static INativeInstance CreateInstance(MontageSettings instance) { if (instance == null) return NativeInstance.Zero; return instance.CreateNativeInstance(); }