using LLama.Abstractions; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LLama.Native { /// /// When you are using .NET standard2.0, dynamic native library loading is not supported. /// This class will be returned in . /// public class UnknownNativeLibrary: INativeLibrary { /// public NativeLibraryMetadata? Metadata => null; /// public IEnumerable Prepare(SystemInfo systemInfo, NativeLogConfig.LLamaLogCallback? logCallback = null) { throw new NotImplementedException("This class is only a placeholder and should not be used to load native library."); } } }