c# - Where to store information about point in console application? -


i need create struct storing 4 points. wanted create point variable, looks can't use system.drawing in console application. should use?

you should add reference system.drawing.dll , add using system.drawing;

using system; using system.collections.generic; using system.linq; using system.text; using system.drawing;    namespace consoleapplication5 {     class program     {         static void main(string[] args)         {           point point =  new point();         }      } } 

enter image description here


Comments

Popular posts from this blog

windows - Single EXE to Install Python Standalone Executable for Easy Distribution -

c# - Access objects in UserControl from MainWindow in WPF -

javascript - How to name a jQuery function to make a browser's back button work? -