Hello!
See the code below:
public class Customer
{
private string name;
public Customer(string name) : base()
{
this.name = name;
}
public string Name
{
get { return this.name; }
set { // some implementation ... }
}
}
publi...
more >>
Hi all
I'm using VS.Net 2003 and would like to create a DLL that contains a
series of images used by my app. I would need to be able to access them
by name, returning (say) an Image type. If I add a new image then I can
simply send out the updated DLL without recompiling the whole app.
I ca...
more >>
Hi,
I am deploying a project to a laptop. It works fine on my development
computer, and I have tested once a few weeks ago.
However, this time, the program can not start at all. After some digging, I
find that it stops right at the following line (this line is part of the
function called by...
more >>
If I have a DataRow with a column of type DateTime and another
DataRow with a column of type string and do a simple assignment from
a DateTime cell to a string cell, what should happen?
I ran across this case just yesterday where someone had coded
drA[string-type-cell] = drB[DateTime-type-c...
more >>
Hello,
Does anyone know why I keep getting this msg everytime I save a *.cs file?
"This file has been modified outside of the source editor. Do you want to
reload it?"
Thank you very much
...
more >>