VB.NET Brackets () {} [] <>

11,313

Solution 1

In this case it's used for the Attribute declaration. It can also be used in XML Literals as follows:

<TestMethod>
Public Sub ThisIsATest()
  If 1 <> 0 Then
    Dim foo = <root>
                <child>this is some XML</child>
              </root>
  End If
End Sub

Solution 2

VB.net uses parentheses for, among other things, arithmetic groupings and function parameters (both of which use parentheses in C#), as well as array subscripts and default-property parameters (both of which use brackets in C#), (indexers), etc. It also uses (Of ... ) to enclose a list of types (which would be enclosed in < ... > in C#, with no "Of" keyword.

Braces are used for array or set initialization expressions, and are also used when defining a generic type with multiple constraints (e.g. (Of Foo As {IEnumerable, IDisposable, Class})). Note that the latter usage is only permitted in constraints; it is alas not possible to e.g. Dim MyThing As {IEnumerable, IDisposable, Class}).

Braces are now also used for the New With {} construct:

Dim p = New Person With {.Name = "John Smith", .Age = 27}
Dim anon = New With {.Name = "Jack Smythe", .Age = 23}

Square brackets are used to enclose identifiers whose spelling would match that of a reserved word. For example, if a class defined a method called Not (perhaps the class was written in a language without a keyword Not), one could use such a method within VB by enclosing its name in square brackets (e.g. someVariable = [Not](5)). In the absence of the square brackets, the above expression would set someVariable to -6 (the result of applying the vb.net Not operator to the value 5).

Angle brackets, as noted elsewhere, are used for attributes. Note that in many cases, attributes are placed on the line above the thing they affect (so as to avoid pushing the affected variable past the right edge of the screen). In older versions of vb, such usage requires the use of a line-continuation mark (trailing underscore).

Angle brackets are also used for XML Literals and XML Axis Properties:

Dim xml = <simpleTag><anotherTag>text</anotherTag></simpleTag>
Console.WriteLine(xml.<anotherTag>.First.Value)

Solution 3

In VB.Net, <> is used to enclose Attributes.

Solution 4

VB.NET uses <> for attributes as well as to indicate "does not equal" (!=)

In your example it is just enclosing attributes. That same code in C# would be

[TemplateContainer(GetType(TemplateItem))]
public ITemplate MessageTemplate { get; set; }

This attribute is used in developing templated controls, which separate data from presentation. In other words, a templated control can retain the same functionality while changing it's appearance.

Share:
11,313
Chiramisu
Author by

Chiramisu

Since 2018: C# .NET Windows App Developer supporting Embedded devices, Certified ScrumMaster, DevOps Engineer. Since 2017: A bit of Machine / Deep Learning and brushing up supporting skills such as: Python, Statistics, Linear Algebra, Calculus, etc. Fun and exciting stuff!!! 😊 Since 2011: Full Stack Web Developer / Database Architect / SharePoint Admin / SAP MM Business Analyst / All-around Friendly Hacker / Lifelong Epistemophiliac (not as dirty as it sounds 😋). Cheers!

Updated on August 03, 2022

Comments

  • Chiramisu
    Chiramisu almost 2 years

    Can someone please fill in the blanks for me, including a brief description of use and perhaps a code snippet? I'm well aware of the top two in particular, but a little hazy on the last one especially:

    • () - Used for calling a function, object instantiation, passing parameters, etc.
    • {} - Used for defining and adding elements to arrays or sets.
    • [] - Used for forcing an object to be treated as a type rather than keyword.
    • <> - Used for... ?

    For Example, I see stuff like this all the time, but still not quite sure what the brackets means...

    <TemplateContainer(GetType(TemplateItem))> _
    Public Property MessageTemplate As ITemplate