From the course: AutoCAD Add-ins Using VB.NET

Unlock the full course today

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

Creating a base class object

Creating a base class object - AutoCAD Tutorial

From the course: AutoCAD Add-ins Using VB.NET

Start my 1-month free trial

Creating a base class object

- [Instructor] When we first were introduced to .NET here, we were talking about how .NET is really object oriented programming. And we discussed really what a class was really at the beginning of this course. And the class really is an object. Everything in .NET including just a string is an object. But we really haven't delved deep into understanding what that means. What is object oriented programming? And really because we've used the class, such as the initialization, which is a class, as simply a means to store our code; it's just a place to put code, our routines. So what we're going to do in this chapter is we're going to learn a little bit more about object-oriented programming. How can we use it more effectively within our autocad plugins. And so let's go ahead and open up our exercise. It's in Chapter 7. 07-01 is our solution. And as mentioned, everything we've done so far is within the 07-01, or within the initialization class of whatever exercise we are working in. What…

Contents