I am working on an assignment that says "Do not use external libraries." So I created a C # application, and the first thing I did was remove all the dll links by default ... including "System.dll".
However, I can add this to my code:
using System; using System.IO;
I was just curious to know why I do not need to have System.dll as a link in my project to do this. Thanks!
c # visual-studio-2010
ntsue
source share