==Customizeable Methods==
===AddSystemAssemblies===
Gives the possibility to define assemblies (by their name) which must be added to the UBIK Compiler every time it is asked to compile either the customizing or debugging code in the debugging test environment (Whobert){{Version/ServerSince|2.5.0}}. ''Example:''<syntaxhighlight lang="csharp">public override System.String[] AddSystemAssemblies(){ List<string> assemblies = new List<string>(); string[] baseAssemblies = base.AddSystemAssemblies(); if (baseAssemblies != null) { assemblies.AddRange(baseAssemblies); } assemblies.Add( "System.Data" ); return assemblies.ToArray();}</syntaxhighlight>
[[Category:Metaclasses|CUSTOMIZING]]