How can i declare and set a custom type in one line.
Option Explicit
Type Stackoverflow
    stack As String
    overflow As String
End Type
Sub WorkingExample()
    Dim example As Stackoverflow
    example.stack = "stack"
    example.overflow = "overflow"
    MsgBox (example.stack + example.overflow)
End Sub
Sub NotCompiling()
    Dim example As Stackoverflow = {.stack = "stack", .overflow = "overflow"}
    MsgBox (example.stack + example.overflow)
End Sub
In this mini example the WorkingExample shows the behavior i want and the NotCompiling part shows what i want to write but i am not able to.
Please show how something like this Dim example As Stackoverflow = {.stack = "stack", .overflow = "overflow"} can be written as one line.
 
    