InterviewSolution
| 1. |
How To Generate Sequence Diagrams In Visual Studio? |
|
Answer» To visualize how the code implements a particular method, create a sequence diagram from that method in Visual STUDIO Ultimate. The sequence diagram shows the INTERACTION between objects as a series of lifelines and messages. Lifelines represent instances of objects, and messages represent method calls between those objects. You can generate sequence diagrams from Visual C# .NET or Visual Basic .NET code, but not from projects that share code ACROSS multiple APPS. To visualize how the code implements a particular method, create a sequence diagram from that method in Visual Studio Ultimate. The sequence diagram shows the interaction between objects as a series of lifelines and messages. Lifelines represent instances of objects, and messages represent method calls between those objects. You can generate sequence diagrams from Visual C# .NET or Visual Basic .NET code, but not from projects that share code across multiple apps. |
|