Reputation: 167
what is meant by the <> in this code?
<System.AddIn.AddIn("ScriptMain", Version:="1.0", Publisher:="", Description:="")> _
<System.CLSCompliantAttribute(False)> Partial Public Class ScriptMain
Inherits Microsoft.SqlServer.Dts.Tasks.ScriptTask.VSTARTScriptObjectModelBase
Upvotes: 2
Views: 44
Reputation: 9587
What you're seeing is attributes (MSDN).
It is permissible for them to be placed on the same line as type or member declaration (as is the case with the CLSCompliantAttribute
in your example).
Upvotes: 2