C
confused
I use getters and setters to encapsulate private variables in my C# code in
objects. Example:
private long id ;
public long ID
{
get{
return id;
}
set{
id = value;
}
}
Is there a way to depict this in my UML diagrams in Visio 2003? It would be
nice if it generated the code for it as well.
Thanks
objects. Example:
private long id ;
public long ID
{
get{
return id;
}
set{
id = value;
}
}
Is there a way to depict this in my UML diagrams in Visio 2003? It would be
nice if it generated the code for it as well.
Thanks