Describes the C# script type.
This is the script that allows scripting using the C# language. It is meant to be the most advanced and flexible script.
Inheritance: IScriptType
Esempio n. 1
0
 /// <summary>
 /// A simple constructor that initializes the object with the given values.
 /// </summary>
 /// <param name="p_cstScripType">The script's type.</param>
 /// <param name="p_strCode">The C# script code.</param>
 public CSharpScript(CSharpScriptType p_cstScripType, string p_strCode)
 {
     Type = p_cstScripType;
     Code = p_strCode;
 }
		/// <summary>
		/// A simple constructor that initializes the object with the given values.
		/// </summary>
		/// <param name="p_cstScripType">The script's type.</param>
		/// <param name="p_strCode">The C# script code.</param>
		public CSharpScript(CSharpScriptType p_cstScripType, string p_strCode)
		{
			Type = p_cstScripType;
			Code = p_strCode;
		}