Rhino.Context.GetImplementationVersion C# (CSharp) Method

GetImplementationVersion() public method

Get the implementation version.
Get the implementation version.

The implementation version is of the form

 "name langVer release relNum date" 
where name is the name of the product, langVer is the language version, relNum is the release number, and date is the release date for that specific release in the form "yyyy mm dd".
public GetImplementationVersion ( ) : string
return string
		public string GetImplementationVersion()
		{
			// XXX Probably it would be better to embed this directly into source
			// with special build preprocessing but that would require some ant
			// tweaking and then replacing token in resource files was simpler
			if (implementationVersion == null)
			{
				implementationVersion = ScriptRuntime.GetMessage0("implementation.version");
			}
			return implementationVersion;
		}
Context