Object Reference

The HelloWorld namespace is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.

Classes


HelloWorldRunner Class

  • Namespace: HelloWorld

Class HelloWorldRunner. Use to test your code is working in a very basic scenario.

Constructor

HelloWorldRunner() Initializes a new instance of the HelloWorldRunner Class.

Code Examples

C#
HelloWorldRunner mythingy = new HelloWorldRunner();
VB.Net
HelloWorldRunner mythingy = new HelloWorldRunner()

Methods

GetMessage
String GetMessage() Gets the ‘Hello, World message’.

Code Examples

C#
var mythingy = new HelloWorldRunner();
Console.WriteLine(mythingy.GetMessage());
VB.Net
dim mythingy = new HelloWorldRunner()
Console.WriteLine("Output: " + mythingy.GetMessage())

HelloWorldProgram Class

  • Namespace: HelloWorld

A program class.


Methods

Main
void Main(String[] args) Mains the specified arguments. Dirk customization.
Arguments: System.String[] Args The arguments.