I have Visual Studio 2010 ultimate edition. I have the following code in a file named test.cs:
public interface IXClass
{
void Test();
}
public class ConcreteXClass1 : IXClass
{
public void Test()
{
throw new NotImplementedException();
}
}
public class ConcreteXClass2 : IXClass
{
public void Test()
{
throw new NotImplementedException();
}
}
How do I create a UML diagram for the above code? Where can I get the option in VS to generate the UML diagram for the above code?
1 Answer