I need to learn UML but from a C# perspective.
I’m beginner with C# language, so I don’t have any experience in C/C++ and other languages.
I’m a freshstart learner with C#.
So I check google/books but they explain with VB/JAVA code and other IDEs.
I need to find a book or extensive page about learn UML with C#.
I know a little about it, I think is a flowing mechanism of steps to develop a program. But I have a really little time and I want to get a Good idea using UML with C# exclusively for being useful at an easy project.
Could you help me?
I’d recommend you take a look at Martin Fowler’s book, “Uml Distilled”. That should give you a good grasp of the basics.
One of the hardest things I had to get my head around with Uml is the concept of different “views”. Some of the uml notations are used for one diagram and not for others.
I would start by trying to learn about class diagrams as this has the closest mapping to what you see in C#; Class, Object, Interfaces, etc.
Some of the diagrams, such as Use Case, have nothing to do with programming languages or concepts and will work with any programming language.