Jump to: navigation, search

Changes


CUSTOMIZING

393 bytes added, 12:11, 3 July 2015
==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]]
1,528
edits