November 2002
Intermediate to advanced
560 pages
11h 16m
English
As stated previously, the .NET Framework is both a specification and an implementation. Given that this book is intended for use by developers, it is about time that we demonstrated some of the framework's abilities. This simple example will highlight just how powerful and flexible the language integration between .NET languages is.
Listing 1.1 defines a Python class called HelloWorldPY.
class HelloWorldPY:
def __init__(self):
self.message = "Hello World from Python!"
def SayHello(self):
_com_return_type_="System.Void"
COR.System.Console.WriteLine(self.message)
if __name__=="__main__":
AnObject = HelloWorldPY()
AnObject.SayHello()
|
The class HelloWorldPY defines two methods, a constructor ...
Read now
Unlock full access