using System; using System.Collections.Generic; using System.Text; namespace ScriptNET.Runtime { /// /// Objects implementing this interface will participate in strong assignment (:=) operator. /// public interface ISupportAssign { void AssignTo(object target); } }