Version.this

A constructor that creates an object of the Version class with the given parameter in the form of some string value representing protocol version. If called without parameters, then the default parameter is empty string value.

class Version
this
(
string name = ""
)

Parameters

name string

String value for protocol version.

Typical usage:

Version vers = new Version(`9P2000`);

Meta