references
In my project I am using somebody elses .dll library called theirLib, which I do not know the inner workinngs. I have started with the
using theirLib;
now it is asking me to add references to my projct that is used by theirLib.dll but not by my project.
Does not all the references from theirLib.dll automatically come over to my project when I include the "using theirLib;"??
AdministratorPosted Apr 2, 2003, 7:23 AM
AdministratorPosted Apr 1, 2003, 2:33 PM
using System.Text; .... StringBuilder sb = new StringBuilder();is same as:... System.Text.StringBuilder sb = new System.Text.StringBuilder();Federico