Hello,
I have to implement the Point, Pointcollection, vector classes in asp.net core 5.0.
it returns me an error simply to create a pointcollection
PointCollection test = new PointCollection ();
the error returned is:
System.BadImageFormatException: Could not load file or assembly 'PresentationCore, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. Reference assemblies should not be loaded for execution. They can only be loaded in the Reflection-only loader context. (0x80131058)
help?
