From the course: AutoCAD: Building Add-ins with C#

Unlock the full course today

Join today to access over 22,700 courses taught by industry experts or purchase this course individually.

Class overview

Class overview - AutoCAD Tutorial

From the course: AutoCAD: Building Add-ins with C#

Start my 1-month free trial

Class overview

- [Instructor] Now that we have our project created and we have an understanding a little bit more about the project properties, let's look at the classes that are found within our project. Now, before we look at those classes, we really have to get a better understanding of what a class object is. We go back to looking at dot net. Dot net is an object-oriented programming language. That means everything that you work in or with inside of dot net is an object. A piece of text is not just characters, but it actually is a string object. I know this may seem like a little thing, but it's important to remember as we build our own objects using classes in dot net. Now a class may seem to you simply as a chunk of code, but we use classes for everything we program within our dot net project. So a class really will house our methods, or the routines or functions that we're gonna write, as well as the properties, the values that we're going to read and write too, as well. Everything that we…

Contents