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(); } } }
Comments
Post a Comment