fork(2) download
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Manager.aspx.cs" Inherits="Manager" %>
  2.  
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://w...content-available-to-author-only...3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4.  
  5. <html xmlns="http://w...content-available-to-author-only...3.org/1999/xhtml">
  6. <head runat="server">
  7. <title></title>
  8. </head>
  9. <body>
  10. <form id="form1" runat="server">
  11. <div style="height: 372px; width: 1148px">
  12.  
  13. <asp:SqlDataSource ID="SqlDataSourceRegistration" runat="server"
  14. ConnectionString="<%$ ConnectionStrings:RegistrationConnectionString %>"
  15. SelectCommand="SELECT * FROM [UserData]"
  16. DeleteCommand="DELETE FROM [UserData] WHERE [ID] = @ID"
  17. InsertCommand="INSERT INTO [UserData] ([ID], [UserName], [Email], [Password], [Country]) VALUES (@ID, @UserName, @Email, @Password, @Country)"
  18. onselecting="SqlDataSourceRegistration_Selecting"
  19. UpdateCommand="UPDATE [UserData] SET [UserName] = @UserName, [Email] = @Email, [Password] = @Password, [Country] = @Country WHERE [ID] = @ID">
  20. <DeleteParameters>
  21. <asp:Parameter Name="ID" Type="String" />
  22. </DeleteParameters>
  23. <InsertParameters>
  24. <asp:Parameter Name="ID" Type="String" />
  25. <asp:Parameter Name="UserName" Type="String" />
  26. <asp:Parameter Name="Email" Type="String" />
  27. <asp:Parameter Name="Password" Type="String" />
  28. <asp:Parameter Name="Country" Type="String" />
  29. </InsertParameters>
  30. <UpdateParameters>
  31. <asp:Parameter Name="UserName" Type="String" />
  32. <asp:Parameter Name="Email" Type="String" />
  33. <asp:Parameter Name="Password" Type="String" />
  34. <asp:Parameter Name="Country" Type="String" />
  35. <asp:Parameter Name="ID" Type="String" />
  36. </UpdateParameters>
  37. </asp:SqlDataSource>
  38. <asp:GridView ID="GridView1" runat="server"
  39. AutoGenerateColumns="False" CellPadding="4"
  40. DataSourceID="SqlDataSourceRegistration" ForeColor="#333333" GridLines="None"
  41. Height="289px" Width="797px"
  42. onselectedindexchanged="GridView1_SelectedIndexChanged" ShowFooter="True">
  43. <AlternatingRowStyle BackColor="White" />
  44. <Columns>
  45. <asp:CommandField ShowDeleteButton="True" ShowEditButton="True" />
  46. <asp:TemplateField HeaderText="ID" SortExpression="ID">
  47. <EditItemTemplate>
  48. <asp:TextBox ID="TextBox2" runat="server" Text='<%# Bind("ID") %>'></asp:TextBox>
  49. </EditItemTemplate>
  50. <ItemTemplate>
  51. <asp:Label ID="Label2" runat="server" Text='<%# Bind("ID") %>'></asp:Label>
  52. </ItemTemplate>
  53. <FooterTemplate>
  54. <asp:LinkButton ID="LinkButton_Insert" runat="server">Insert</asp:LinkButton>
  55. </FooterTemplate>
  56.  
  57. </asp:TemplateField>
  58. <asp:TemplateField HeaderText="UserName" SortExpression="UserName">
  59. <EditItemTemplate>
  60. <asp:TextBox ID="TextBox1" runat="server" Text='<%# Bind("UserName") %>'></asp:TextBox>
  61. </EditItemTemplate>
  62. <ItemTemplate>
  63. <asp:Label ID="Label1" runat="server" Text='<%# Bind("UserName") %>'></asp:Label>
  64. </ItemTemplate>
  65. <FooterTemplate>
  66. <asp:TextBox ID="TextBoxUsername" runat="server"></asp:TextBox>
  67. </FooterTemplate>
  68. </asp:TemplateField>
  69. <asp:TemplateField HeaderText="Email" SortExpression="Email">
  70. <EditItemTemplate>
  71. <asp:TextBox ID="TextBox3" runat="server" Text='<%# Bind("Email") %>'></asp:TextBox>
  72. </EditItemTemplate>
  73. <ItemTemplate>
  74. <asp:Label ID="Label3" runat="server" Text='<%# Bind("Email") %>'></asp:Label>
  75. </ItemTemplate>
  76. <FooterTemplate>
  77. <asp:TextBox ID="TextBoxEmail" runat="server"></asp:TextBox>
  78. </FooterTemplate>
  79. </asp:TemplateField>
  80. <asp:TemplateField HeaderText="Password" SortExpression="Password">
  81. <EditItemTemplate>
  82. <asp:TextBox ID="TextBox4" runat="server" Text='<%# Bind("Password") %>'></asp:TextBox>
  83. </EditItemTemplate>
  84. <ItemTemplate>
  85. <asp:Label ID="Label4" runat="server" Text='<%# Bind("Password") %>'></asp:Label>
  86. </ItemTemplate>
  87. <FooterTemplate>
  88. <asp:TextBox ID="TextBoxPassword" runat="server"></asp:TextBox>
  89. </FooterTemplate>
  90. </asp:TemplateField>
  91. <asp:TemplateField HeaderText="Country" SortExpression="Country"
  92. ConvertEmptyStringToNull="True">
  93. <EditItemTemplate>
  94. <asp:DropDownList ID="DropDownList1" runat="server" SelectedValue='<%# Bind("Country")%>''>
  95.  
  96. <asp:ListItem Value="">Select Country</asp:ListItem>
  97. <asp:ListItem Value="India">India</asp:ListItem>
  98. <asp:ListItem Value="USA">USA</asp:ListItem>
  99. <asp:ListItem Value="UK">UK</asp:ListItem>
  100. <asp:ListItem Value="China">China</asp:ListItem>
  101. <asp:ListItem Value="North Korea">North Korea</asp:ListItem>
  102. <asp:ListItem Value="Kazakhstan">Kazakhstan</asp:ListItem>
  103. </asp:DropDownList>
  104. </EditItemTemplate>
  105. <ItemTemplate>
  106. <asp:Label ID="Label5" runat="server" Text='<%# Bind("Country") %>'></asp:Label>
  107. </ItemTemplate>
  108. <FooterTemplate>
  109. <asp:DropDownList ID="TextBoxDropDownList1" runat="server" >
  110. <asp:ListItem Value="">Select Country</asp:ListItem>
  111. <asp:ListItem Value="India">India</asp:ListItem>
  112. <asp:ListItem Value="USA">USA</asp:ListItem>
  113. <asp:ListItem Value="UK">UK</asp:ListItem>
  114. <asp:ListItem Value="China">China</asp:ListItem>
  115. <asp:ListItem Value="North Korea">North Korea</asp:ListItem>
  116. <asp:ListItem Value="Kazakhstan">Kazakhstan</asp:ListItem>
  117. </asp:DropDownList>
  118. </FooterTemplate>
  119. </asp:TemplateField>
  120. </Columns>
  121. <FooterStyle BackColor="#990000" Font-Bold="True" ForeColor="White" />
  122. <HeaderStyle BackColor="#990000" Font-Bold="True" ForeColor="White" />
  123. <PagerStyle BackColor="#FFCC66" ForeColor="#333333" HorizontalAlign="Center" />
  124. <RowStyle BackColor="#FFFBD6" ForeColor="#333333" />
  125. <SelectedRowStyle BackColor="#FFCC66" Font-Bold="True" ForeColor="Navy" />
  126. <SortedAscendingCellStyle BackColor="#FDF5AC" />
  127. <SortedAscendingHeaderStyle BackColor="#4D0000" />
  128. <SortedDescendingCellStyle BackColor="#FCF6C0" />
  129. <SortedDescendingHeaderStyle BackColor="#820000" />
  130. </asp:GridView>
  131.  
  132. </div>
  133. </form>
  134. </body>
  135. </html>
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Visual Basic.Net Compiler version 0.0.0.5943 (Mono 3.8 - tarball)
Copyright (C) 2004-2010 Rolf Bjarne Kvinge. All rights reserved.

/home/Jn1yYw/prog.vb (1,3) : error VBNC30037: Symbol is not valid.
/home/Jn1yYw/prog.vb (3,2): Compiler error around this location, the compiler hasn't implemented the error message, nor error recovery, so the compiler will probably crash soon.
   at vbnc.Helper.ErrorRecoveryNotImplemented(Span Location)
   at vbnc.Parser.ParseAttribute(vbnc.ParsedObject Parent)
   at vbnc.Parser.ParseAttributeList(vbnc.ParsedObject Parent, vbnc.Attributes Attributes)
   at vbnc.Parser.ParseAttributeBlock(vbnc.ParsedObject Parent, vbnc.Attributes Attributes)
   at vbnc.Parser.ParseAttributes(vbnc.ParsedObject Parent, vbnc.Attributes ByRef Attributes)
   at vbnc.Parser.ParseAssemblyMembers(vbnc.AssemblyDeclaration Parent, System.String RootNamespace)
   at vbnc.Parser.ParseAssemblyDeclaration(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Parser.Parse(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Compiler.Compile_Parse()
   at vbnc.Compiler.Compile()
   at vbnc.Compiler.Compile(System.String[] CommandLine)
   at vbnc.Main.Main(System.String[] CmdArgs)
/home/Jn1yYw/prog.vb (3,2) : error VBNC90019: Expected '>'.
/home/Jn1yYw/prog.vb (3,2): Compiler error around this location, the compiler hasn't implemented the error message, nor error recovery, so the compiler will probably crash soon.
   at vbnc.Helper.ErrorRecoveryNotImplemented(Span Location)
   at vbnc.Parser.ParseAttributes(vbnc.ParsedObject Parent, vbnc.Attributes ByRef Attributes)
   at vbnc.Parser.ParseAssemblyMembers(vbnc.AssemblyDeclaration Parent, System.String RootNamespace)
   at vbnc.Parser.ParseAssemblyDeclaration(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Parser.Parse(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Compiler.Compile_Parse()
   at vbnc.Compiler.Compile()
   at vbnc.Compiler.Compile(System.String[] CommandLine)
   at vbnc.Main.Main(System.String[] CmdArgs)
/home/Jn1yYw/prog.vb (3,3): Compiler error around this location, the compiler hasn't implemented the error message, nor error recovery, so the compiler will probably crash soon.
   at vbnc.Helper.ErrorRecoveryNotImplemented(Span Location)
   at vbnc.Parser.ParseAttribute(vbnc.ParsedObject Parent)
   at vbnc.Parser.ParseAttributeList(vbnc.ParsedObject Parent, vbnc.Attributes Attributes)
   at vbnc.Parser.ParseAttributeBlock(vbnc.ParsedObject Parent, vbnc.Attributes Attributes)
   at vbnc.Parser.ParseAttributes(vbnc.ParsedObject Parent, vbnc.Attributes ByRef Attributes)
   at vbnc.Parser.ParseAssemblyMembers(vbnc.AssemblyDeclaration Parent, System.String RootNamespace)
   at vbnc.Parser.ParseAssemblyDeclaration(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Parser.Parse(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Compiler.Compile_Parse()
   at vbnc.Compiler.Compile()
   at vbnc.Compiler.Compile(System.String[] CommandLine)
   at vbnc.Main.Main(System.String[] CmdArgs)
/home/Jn1yYw/prog.vb (3,3) : error VBNC90019: Expected '>'.
/home/Jn1yYw/prog.vb (3,3): Compiler error around this location, the compiler hasn't implemented the error message, nor error recovery, so the compiler will probably crash soon.
   at vbnc.Helper.ErrorRecoveryNotImplemented(Span Location)
   at vbnc.Parser.ParseAttributes(vbnc.ParsedObject Parent, vbnc.Attributes ByRef Attributes)
   at vbnc.Parser.ParseAssemblyMembers(vbnc.AssemblyDeclaration Parent, System.String RootNamespace)
   at vbnc.Parser.ParseAssemblyDeclaration(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Parser.Parse(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Compiler.Compile_Parse()
   at vbnc.Compiler.Compile()
   at vbnc.Compiler.Compile(System.String[] CommandLine)
   at vbnc.Main.Main(System.String[] CmdArgs)
/home/Jn1yYw/prog.vb (3,3) : error VBNC99999: Hanging attributes.
/home/Jn1yYw/prog.vb (3,3) : error VBNC30203: Identifier expected.
/home/Jn1yYw/prog.vb (5,12) : error VBNC90019: Expected '>'.
/home/Jn1yYw/prog.vb (5,12): Compiler error around this location, the compiler hasn't implemented the error message, nor error recovery, so the compiler will probably crash soon.
   at vbnc.Helper.ErrorRecoveryNotImplemented(Span Location)
   at vbnc.Parser.ParseAttributes(vbnc.ParsedObject Parent, vbnc.Attributes ByRef Attributes)
   at vbnc.Parser.ParseAssemblyMembers(vbnc.AssemblyDeclaration Parent, System.String RootNamespace)
   at vbnc.Parser.ParseAssemblyDeclaration(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Parser.Parse(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Compiler.Compile_Parse()
   at vbnc.Compiler.Compile()
   at vbnc.Compiler.Compile(System.String[] CommandLine)
   at vbnc.Main.Main(System.String[] CmdArgs)
/home/Jn1yYw/prog.vb (5,12) : error VBNC99999: Hanging attributes.
/home/Jn1yYw/prog.vb (5,12) : error VBNC30203: Identifier expected.
/home/Jn1yYw/prog.vb (6,12) : error VBNC90019: Expected '>'.
/home/Jn1yYw/prog.vb (6,12): Compiler error around this location, the compiler hasn't implemented the error message, nor error recovery, so the compiler will probably crash soon.
   at vbnc.Helper.ErrorRecoveryNotImplemented(Span Location)
   at vbnc.Parser.ParseAttributes(vbnc.ParsedObject Parent, vbnc.Attributes ByRef Attributes)
   at vbnc.Parser.ParseAssemblyMembers(vbnc.AssemblyDeclaration Parent, System.String RootNamespace)
   at vbnc.Parser.ParseAssemblyDeclaration(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Parser.Parse(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Compiler.Compile_Parse()
   at vbnc.Compiler.Compile()
   at vbnc.Compiler.Compile(System.String[] CommandLine)
   at vbnc.Main.Main(System.String[] CmdArgs)
/home/Jn1yYw/prog.vb (6,12) : error VBNC99999: Hanging attributes.
/home/Jn1yYw/prog.vb (6,12) : error VBNC30203: Identifier expected.
/home/Jn1yYw/prog.vb (7,14): Compiler error around this location, the compiler hasn't implemented the error message, nor error recovery, so the compiler will probably crash soon.
   at vbnc.Helper.ErrorRecoveryNotImplemented(Span Location)
   at vbnc.Parser.ParseAttribute(vbnc.ParsedObject Parent)
   at vbnc.Parser.ParseAttributeList(vbnc.ParsedObject Parent, vbnc.Attributes Attributes)
   at vbnc.Parser.ParseAttributeBlock(vbnc.ParsedObject Parent, vbnc.Attributes Attributes)
   at vbnc.Parser.ParseAttributes(vbnc.ParsedObject Parent, vbnc.Attributes ByRef Attributes)
   at vbnc.Parser.ParseAssemblyMembers(vbnc.AssemblyDeclaration Parent, System.String RootNamespace)
   at vbnc.Parser.ParseAssemblyDeclaration(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Parser.Parse(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Compiler.Compile_Parse()
   at vbnc.Compiler.Compile()
   at vbnc.Compiler.Compile(System.String[] CommandLine)
   at vbnc.Main.Main(System.String[] CmdArgs)
/home/Jn1yYw/prog.vb (7,14) : error VBNC90019: Expected '>'.
/home/Jn1yYw/prog.vb (7,14): Compiler error around this location, the compiler hasn't implemented the error message, nor error recovery, so the compiler will probably crash soon.
   at vbnc.Helper.ErrorRecoveryNotImplemented(Span Location)
   at vbnc.Parser.ParseAttributes(vbnc.ParsedObject Parent, vbnc.Attributes ByRef Attributes)
   at vbnc.Parser.ParseAssemblyMembers(vbnc.AssemblyDeclaration Parent, System.String RootNamespace)
   at vbnc.Parser.ParseAssemblyDeclaration(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Parser.Parse(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Compiler.Compile_Parse()
   at vbnc.Compiler.Compile()
   at vbnc.Compiler.Compile(System.String[] CommandLine)
   at vbnc.Main.Main(System.String[] CmdArgs)
/home/Jn1yYw/prog.vb (7,14) : error VBNC99999: Hanging attributes.
/home/Jn1yYw/prog.vb (7,14) : error VBNC30203: Identifier expected.
/home/Jn1yYw/prog.vb (8,3): Compiler error around this location, the compiler hasn't implemented the error message, nor error recovery, so the compiler will probably crash soon.
   at vbnc.Helper.ErrorRecoveryNotImplemented(Span Location)
   at vbnc.Parser.ParseAttribute(vbnc.ParsedObject Parent)
   at vbnc.Parser.ParseAttributeList(vbnc.ParsedObject Parent, vbnc.Attributes Attributes)
   at vbnc.Parser.ParseAttributeBlock(vbnc.ParsedObject Parent, vbnc.Attributes Attributes)
   at vbnc.Parser.ParseAttributes(vbnc.ParsedObject Parent, vbnc.Attributes ByRef Attributes)
   at vbnc.Parser.ParseAssemblyMembers(vbnc.AssemblyDeclaration Parent, System.String RootNamespace)
   at vbnc.Parser.ParseAssemblyDeclaration(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Parser.Parse(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Compiler.Compile_Parse()
   at vbnc.Compiler.Compile()
   at vbnc.Compiler.Compile(System.String[] CommandLine)
   at vbnc.Main.Main(System.String[] CmdArgs)
/home/Jn1yYw/prog.vb (8,3) : error VBNC90019: Expected '>'.
/home/Jn1yYw/prog.vb (8,3): Compiler error around this location, the compiler hasn't implemented the error message, nor error recovery, so the compiler will probably crash soon.
   at vbnc.Helper.ErrorRecoveryNotImplemented(Span Location)
   at vbnc.Parser.ParseAttributes(vbnc.ParsedObject Parent, vbnc.Attributes ByRef Attributes)
   at vbnc.Parser.ParseAssemblyMembers(vbnc.AssemblyDeclaration Parent, System.String RootNamespace)
   at vbnc.Parser.ParseAssemblyDeclaration(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Parser.Parse(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Compiler.Compile_Parse()
   at vbnc.Compiler.Compile()
   at vbnc.Compiler.Compile(System.String[] CommandLine)
   at vbnc.Main.Main(System.String[] CmdArgs)
/home/Jn1yYw/prog.vb (8,3) : error VBNC99999: Hanging attributes.
/home/Jn1yYw/prog.vb (8,3) : error VBNC30203: Identifier expected.
/home/Jn1yYw/prog.vb (10,13) : error VBNC90019: Expected '>'.
/home/Jn1yYw/prog.vb (10,13): Compiler error around this location, the compiler hasn't implemented the error message, nor error recovery, so the compiler will probably crash soon.
   at vbnc.Helper.ErrorRecoveryNotImplemented(Span Location)
   at vbnc.Parser.ParseAttributes(vbnc.ParsedObject Parent, vbnc.Attributes ByRef Attributes)
   at vbnc.Parser.ParseAssemblyMembers(vbnc.AssemblyDeclaration Parent, System.String RootNamespace)
   at vbnc.Parser.ParseAssemblyDeclaration(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Parser.Parse(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Compiler.Compile_Parse()
   at vbnc.Compiler.Compile()
   at vbnc.Compiler.Compile(System.String[] CommandLine)
   at vbnc.Main.Main(System.String[] CmdArgs)
/home/Jn1yYw/prog.vb (10,13) : error VBNC99999: Hanging attributes.
/home/Jn1yYw/prog.vb (10,13) : error VBNC30203: Identifier expected.
/home/Jn1yYw/prog.vb (11,15) : error VBNC90019: Expected '>'.
/home/Jn1yYw/prog.vb (11,15): Compiler error around this location, the compiler hasn't implemented the error message, nor error recovery, so the compiler will probably crash soon.
   at vbnc.Helper.ErrorRecoveryNotImplemented(Span Location)
   at vbnc.Parser.ParseAttributes(vbnc.ParsedObject Parent, vbnc.Attributes ByRef Attributes)
   at vbnc.Parser.ParseAssemblyMembers(vbnc.AssemblyDeclaration Parent, System.String RootNamespace)
   at vbnc.Parser.ParseAssemblyDeclaration(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Parser.Parse(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Compiler.Compile_Parse()
   at vbnc.Compiler.Compile()
   at vbnc.Compiler.Compile(System.String[] CommandLine)
   at vbnc.Main.Main(System.String[] CmdArgs)
/home/Jn1yYw/prog.vb (11,15) : error VBNC99999: Hanging attributes.
/home/Jn1yYw/prog.vb (11,15) : error VBNC30203: Identifier expected.
/home/Jn1yYw/prog.vb (13,14) : error VBNC90019: Expected '>'.
/home/Jn1yYw/prog.vb (13,14): Compiler error around this location, the compiler hasn't implemented the error message, nor error recovery, so the compiler will probably crash soon.
   at vbnc.Helper.ErrorRecoveryNotImplemented(Span Location)
   at vbnc.Parser.ParseAttributes(vbnc.ParsedObject Parent, vbnc.Attributes ByRef Attributes)
   at vbnc.Parser.ParseAssemblyMembers(vbnc.AssemblyDeclaration Parent, System.String RootNamespace)
   at vbnc.Parser.ParseAssemblyDeclaration(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Parser.Parse(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Compiler.Compile_Parse()
   at vbnc.Compiler.Compile()
   at vbnc.Compiler.Compile(System.String[] CommandLine)
   at vbnc.Main.Main(System.String[] CmdArgs)
/home/Jn1yYw/prog.vb (13,13) : error VBNC32035: Attributes can only appear just before a declaration.
/home/Jn1yYw/prog.vb (13,27) : error VBNC30203: Identifier expected.
/home/Jn1yYw/prog.vb (14,29) : error VBNC30203: Identifier expected.
/home/Jn1yYw/prog.vb (15,26) : error VBNC30203: Identifier expected.
/home/Jn1yYw/prog.vb (16,26) : error VBNC30203: Identifier expected.
/home/Jn1yYw/prog.vb (17,26) : error VBNC30203: Identifier expected.
/home/Jn1yYw/prog.vb (18,24) : error VBNC30203: Identifier expected.
/home/Jn1yYw/prog.vb (19,26) : error VBNC30203: Identifier expected.
/home/Jn1yYw/prog.vb (21,22) : error VBNC90019: Expected '>'.
/home/Jn1yYw/prog.vb (21,22): Compiler error around this location, the compiler hasn't implemented the error message, nor error recovery, so the compiler will probably crash soon.
   at vbnc.Helper.ErrorRecoveryNotImplemented(Span Location)
   at vbnc.Parser.ParseAttributes(vbnc.ParsedObject Parent, vbnc.Attributes ByRef Attributes)
   at vbnc.Parser.ParseAssemblyMembers(vbnc.AssemblyDeclaration Parent, System.String RootNamespace)
   at vbnc.Parser.ParseAssemblyDeclaration(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Parser.Parse(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Compiler.Compile_Parse()
   at vbnc.Compiler.Compile()
   at vbnc.Compiler.Compile(System.String[] CommandLine)
   at vbnc.Main.Main(System.String[] CmdArgs)
/home/Jn1yYw/prog.vb (20,30) : error VBNC32035: Attributes can only appear just before a declaration.
/home/Jn1yYw/prog.vb (21,21) : error VBNC32035: Attributes can only appear just before a declaration.
/home/Jn1yYw/prog.vb (21,31) : error VBNC30203: Identifier expected.
/home/Jn1yYw/prog.vb (22,15): Compiler error around this location, the compiler hasn't implemented the error message, nor error recovery, so the compiler will probably crash soon.
   at vbnc.Helper.ErrorRecoveryNotImplemented(Span Location)
   at vbnc.Parser.ParseAttribute(vbnc.ParsedObject Parent)
   at vbnc.Parser.ParseAttributeList(vbnc.ParsedObject Parent, vbnc.Attributes Attributes)
   at vbnc.Parser.ParseAttributeBlock(vbnc.ParsedObject Parent, vbnc.Attributes Attributes)
   at vbnc.Parser.ParseAttributes(vbnc.ParsedObject Parent, vbnc.Attributes ByRef Attributes)
   at vbnc.Parser.ParseAssemblyMembers(vbnc.AssemblyDeclaration Parent, System.String RootNamespace)
   at vbnc.Parser.ParseAssemblyDeclaration(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Parser.Parse(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Compiler.Compile_Parse()
   at vbnc.Compiler.Compile()
   at vbnc.Compiler.Compile(System.String[] CommandLine)
   at vbnc.Main.Main(System.String[] CmdArgs)
/home/Jn1yYw/prog.vb (22,15) : error VBNC90019: Expected '>'.
/home/Jn1yYw/prog.vb (22,15): Compiler error around this location, the compiler hasn't implemented the error message, nor error recovery, so the compiler will probably crash soon.
   at vbnc.Helper.ErrorRecoveryNotImplemented(Span Location)
   at vbnc.Parser.ParseAttributes(vbnc.ParsedObject Parent, vbnc.Attributes ByRef Attributes)
   at vbnc.Parser.ParseAssemblyMembers(vbnc.AssemblyDeclaration Parent, System.String RootNamespace)
   at vbnc.Parser.ParseAssemblyDeclaration(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Parser.Parse(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Compiler.Compile_Parse()
   at vbnc.Compiler.Compile()
   at vbnc.Compiler.Compile(System.String[] CommandLine)
   at vbnc.Main.Main(System.String[] CmdArgs)
/home/Jn1yYw/prog.vb (22,15) : error VBNC99999: Hanging attributes.
/home/Jn1yYw/prog.vb (22,15) : error VBNC30203: Identifier expected.
/home/Jn1yYw/prog.vb (24,22) : error VBNC90019: Expected '>'.
/home/Jn1yYw/prog.vb (24,22): Compiler error around this location, the compiler hasn't implemented the error message, nor error recovery, so the compiler will probably crash soon.
   at vbnc.Helper.ErrorRecoveryNotImplemented(Span Location)
   at vbnc.Parser.ParseAttributes(vbnc.ParsedObject Parent, vbnc.Attributes ByRef Attributes)
   at vbnc.Parser.ParseAssemblyMembers(vbnc.AssemblyDeclaration Parent, System.String RootNamespace)
   at vbnc.Parser.ParseAssemblyDeclaration(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Parser.Parse(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Compiler.Compile_Parse()
   at vbnc.Compiler.Compile()
   at vbnc.Compiler.Compile(System.String[] CommandLine)
   at vbnc.Main.Main(System.String[] CmdArgs)
/home/Jn1yYw/prog.vb (23,30) : error VBNC32035: Attributes can only appear just before a declaration.
/home/Jn1yYw/prog.vb (24,21) : error VBNC32035: Attributes can only appear just before a declaration.
/home/Jn1yYw/prog.vb (24,31) : error VBNC30203: Identifier expected.
/home/Jn1yYw/prog.vb (25,22) : error VBNC90019: Expected '>'.
/home/Jn1yYw/prog.vb (25,22): Compiler error around this location, the compiler hasn't implemented the error message, nor error recovery, so the compiler will probably crash soon.
   at vbnc.Helper.ErrorRecoveryNotImplemented(Span Location)
   at vbnc.Parser.ParseAttributes(vbnc.ParsedObject Parent, vbnc.Attributes ByRef Attributes)
   at vbnc.Parser.ParseAssemblyMembers(vbnc.AssemblyDeclaration Parent, System.String RootNamespace)
   at vbnc.Parser.ParseAssemblyDeclaration(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Parser.Parse(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Compiler.Compile_Parse()
   at vbnc.Compiler.Compile()
   at vbnc.Compiler.Compile(System.String[] CommandLine)
   at vbnc.Main.Main(System.String[] CmdArgs)
/home/Jn1yYw/prog.vb (25,21) : error VBNC32035: Attributes can only appear just before a declaration.
/home/Jn1yYw/prog.vb (25,31) : error VBNC30203: Identifier expected.
/home/Jn1yYw/prog.vb (26,22) : error VBNC90019: Expected '>'.
/home/Jn1yYw/prog.vb (26,22): Compiler error around this location, the compiler hasn't implemented the error message, nor error recovery, so the compiler will probably crash soon.
   at vbnc.Helper.ErrorRecoveryNotImplemented(Span Location)
   at vbnc.Parser.ParseAttributes(vbnc.ParsedObject Parent, vbnc.Attributes ByRef Attributes)
   at vbnc.Parser.ParseAssemblyMembers(vbnc.AssemblyDeclaration Parent, System.String RootNamespace)
   at vbnc.Parser.ParseAssemblyDeclaration(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Parser.Parse(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Compiler.Compile_Parse()
   at vbnc.Compiler.Compile()
   at vbnc.Compiler.Compile(System.String[] CommandLine)
   at vbnc.Main.Main(System.String[] CmdArgs)
/home/Jn1yYw/prog.vb (26,21) : error VBNC32035: Attributes can only appear just before a declaration.
/home/Jn1yYw/prog.vb (26,31) : error VBNC30203: Identifier expected.
/home/Jn1yYw/prog.vb (27,22) : error VBNC90019: Expected '>'.
/home/Jn1yYw/prog.vb (27,22): Compiler error around this location, the compiler hasn't implemented the error message, nor error recovery, so the compiler will probably crash soon.
   at vbnc.Helper.ErrorRecoveryNotImplemented(Span Location)
   at vbnc.Parser.ParseAttributes(vbnc.ParsedObject Parent, vbnc.Attributes ByRef Attributes)
   at vbnc.Parser.ParseAssemblyMembers(vbnc.AssemblyDeclaration Parent, System.String RootNamespace)
   at vbnc.Parser.ParseAssemblyDeclaration(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Parser.Parse(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Compiler.Compile_Parse()
   at vbnc.Compiler.Compile()
   at vbnc.Compiler.Compile(System.String[] CommandLine)
   at vbnc.Main.Main(System.String[] CmdArgs)
/home/Jn1yYw/prog.vb (27,21) : error VBNC32035: Attributes can only appear just before a declaration.
/home/Jn1yYw/prog.vb (27,31) : error VBNC30203: Identifier expected.
/home/Jn1yYw/prog.vb (28,22) : error VBNC90019: Expected '>'.
/home/Jn1yYw/prog.vb (28,22): Compiler error around this location, the compiler hasn't implemented the error message, nor error recovery, so the compiler will probably crash soon.
   at vbnc.Helper.ErrorRecoveryNotImplemented(Span Location)
   at vbnc.Parser.ParseAttributes(vbnc.ParsedObject Parent, vbnc.Attributes ByRef Attributes)
   at vbnc.Parser.ParseAssemblyMembers(vbnc.AssemblyDeclaration Parent, System.String RootNamespace)
   at vbnc.Parser.ParseAssemblyDeclaration(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Parser.Parse(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Compiler.Compile_Parse()
   at vbnc.Compiler.Compile()
   at vbnc.Compiler.Compile(System.String[] CommandLine)
   at vbnc.Main.Main(System.String[] CmdArgs)
/home/Jn1yYw/prog.vb (28,21) : error VBNC32035: Attributes can only appear just before a declaration.
/home/Jn1yYw/prog.vb (28,31) : error VBNC30203: Identifier expected.
/home/Jn1yYw/prog.vb (29,15): Compiler error around this location, the compiler hasn't implemented the error message, nor error recovery, so the compiler will probably crash soon.
   at vbnc.Helper.ErrorRecoveryNotImplemented(Span Location)
   at vbnc.Parser.ParseAttribute(vbnc.ParsedObject Parent)
   at vbnc.Parser.ParseAttributeList(vbnc.ParsedObject Parent, vbnc.Attributes Attributes)
   at vbnc.Parser.ParseAttributeBlock(vbnc.ParsedObject Parent, vbnc.Attributes Attributes)
   at vbnc.Parser.ParseAttributes(vbnc.ParsedObject Parent, vbnc.Attributes ByRef Attributes)
   at vbnc.Parser.ParseAssemblyMembers(vbnc.AssemblyDeclaration Parent, System.String RootNamespace)
   at vbnc.Parser.ParseAssemblyDeclaration(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Parser.Parse(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Compiler.Compile_Parse()
   at vbnc.Compiler.Compile()
   at vbnc.Compiler.Compile(System.String[] CommandLine)
   at vbnc.Main.Main(System.String[] CmdArgs)
/home/Jn1yYw/prog.vb (29,15) : error VBNC90019: Expected '>'.
/home/Jn1yYw/prog.vb (29,15): Compiler error around this location, the compiler hasn't implemented the error message, nor error recovery, so the compiler will probably crash soon.
   at vbnc.Helper.ErrorRecoveryNotImplemented(Span Location)
   at vbnc.Parser.ParseAttributes(vbnc.ParsedObject Parent, vbnc.Attributes ByRef Attributes)
   at vbnc.Parser.ParseAssemblyMembers(vbnc.AssemblyDeclaration Parent, System.String RootNamespace)
   at vbnc.Parser.ParseAssemblyDeclaration(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Parser.Parse(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Compiler.Compile_Parse()
   at vbnc.Compiler.Compile()
   at vbnc.Compiler.Compile(System.String[] CommandLine)
   at vbnc.Main.Main(System.String[] CmdArgs)
/home/Jn1yYw/prog.vb (29,15) : error VBNC99999: Hanging attributes.
/home/Jn1yYw/prog.vb (29,15) : error VBNC30203: Identifier expected.
/home/Jn1yYw/prog.vb (31,22) : error VBNC90019: Expected '>'.
/home/Jn1yYw/prog.vb (31,22): Compiler error around this location, the compiler hasn't implemented the error message, nor error recovery, so the compiler will probably crash soon.
   at vbnc.Helper.ErrorRecoveryNotImplemented(Span Location)
   at vbnc.Parser.ParseAttributes(vbnc.ParsedObject Parent, vbnc.Attributes ByRef Attributes)
   at vbnc.Parser.ParseAssemblyMembers(vbnc.AssemblyDeclaration Parent, System.String RootNamespace)
   at vbnc.Parser.ParseAssemblyDeclaration(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Parser.Parse(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Compiler.Compile_Parse()
   at vbnc.Compiler.Compile()
   at vbnc.Compiler.Compile(System.String[] CommandLine)
   at vbnc.Main.Main(System.String[] CmdArgs)
/home/Jn1yYw/prog.vb (30,30) : error VBNC32035: Attributes can only appear just before a declaration.
/home/Jn1yYw/prog.vb (31,21) : error VBNC32035: Attributes can only appear just before a declaration.
/home/Jn1yYw/prog.vb (31,31) : error VBNC30203: Identifier expected.
/home/Jn1yYw/prog.vb (32,22) : error VBNC90019: Expected '>'.
/home/Jn1yYw/prog.vb (32,22): Compiler error around this location, the compiler hasn't implemented the error message, nor error recovery, so the compiler will probably crash soon.
   at vbnc.Helper.ErrorRecoveryNotImplemented(Span Location)
   at vbnc.Parser.ParseAttributes(vbnc.ParsedObject Parent, vbnc.Attributes ByRef Attributes)
   at vbnc.Parser.ParseAssemblyMembers(vbnc.AssemblyDeclaration Parent, System.String RootNamespace)
   at vbnc.Parser.ParseAssemblyDeclaration(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Parser.Parse(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Compiler.Compile_Parse()
   at vbnc.Compiler.Compile()
   at vbnc.Compiler.Compile(System.String[] CommandLine)
   at vbnc.Main.Main(System.String[] CmdArgs)
/home/Jn1yYw/prog.vb (32,21) : error VBNC32035: Attributes can only appear just before a declaration.
/home/Jn1yYw/prog.vb (32,31) : error VBNC30203: Identifier expected.
/home/Jn1yYw/prog.vb (33,22) : error VBNC90019: Expected '>'.
/home/Jn1yYw/prog.vb (33,22): Compiler error around this location, the compiler hasn't implemented the error message, nor error recovery, so the compiler will probably crash soon.
   at vbnc.Helper.ErrorRecoveryNotImplemented(Span Location)
   at vbnc.Parser.ParseAttributes(vbnc.ParsedObject Parent, vbnc.Attributes ByRef Attributes)
   at vbnc.Parser.ParseAssemblyMembers(vbnc.AssemblyDeclaration Parent, System.String RootNamespace)
   at vbnc.Parser.ParseAssemblyDeclaration(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Parser.Parse(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Compiler.Compile_Parse()
   at vbnc.Compiler.Compile()
   at vbnc.Compiler.Compile(System.String[] CommandLine)
   at vbnc.Main.Main(System.String[] CmdArgs)
/home/Jn1yYw/prog.vb (33,21) : error VBNC32035: Attributes can only appear just before a declaration.
/home/Jn1yYw/prog.vb (33,31) : error VBNC30203: Identifier expected.
/home/Jn1yYw/prog.vb (34,22) : error VBNC90019: Expected '>'.
/home/Jn1yYw/prog.vb (34,22): Compiler error around this location, the compiler hasn't implemented the error message, nor error recovery, so the compiler will probably crash soon.
   at vbnc.Helper.ErrorRecoveryNotImplemented(Span Location)
   at vbnc.Parser.ParseAttributes(vbnc.ParsedObject Parent, vbnc.Attributes ByRef Attributes)
   at vbnc.Parser.ParseAssemblyMembers(vbnc.AssemblyDeclaration Parent, System.String RootNamespace)
   at vbnc.Parser.ParseAssemblyDeclaration(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Parser.Parse(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Compiler.Compile_Parse()
   at vbnc.Compiler.Compile()
   at vbnc.Compiler.Compile(System.String[] CommandLine)
   at vbnc.Main.Main(System.String[] CmdArgs)
/home/Jn1yYw/prog.vb (34,21) : error VBNC32035: Attributes can only appear just before a declaration.
/home/Jn1yYw/prog.vb (34,31) : error VBNC30203: Identifier expected.
/home/Jn1yYw/prog.vb (35,22) : error VBNC90019: Expected '>'.
/home/Jn1yYw/prog.vb (35,22): Compiler error around this location, the compiler hasn't implemented the error message, nor error recovery, so the compiler will probably crash soon.
   at vbnc.Helper.ErrorRecoveryNotImplemented(Span Location)
   at vbnc.Parser.ParseAttributes(vbnc.ParsedObject Parent, vbnc.Attributes ByRef Attributes)
   at vbnc.Parser.ParseAssemblyMembers(vbnc.AssemblyDeclaration Parent, System.String RootNamespace)
   at vbnc.Parser.ParseAssemblyDeclaration(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Parser.Parse(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Compiler.Compile_Parse()
   at vbnc.Compiler.Compile()
   at vbnc.Compiler.Compile(System.String[] CommandLine)
   at vbnc.Main.Main(System.String[] CmdArgs)
/home/Jn1yYw/prog.vb (35,21) : error VBNC32035: Attributes can only appear just before a declaration.
/home/Jn1yYw/prog.vb (35,31) : error VBNC30203: Identifier expected.
/home/Jn1yYw/prog.vb (36,15): Compiler error around this location, the compiler hasn't implemented the error message, nor error recovery, so the compiler will probably crash soon.
   at vbnc.Helper.ErrorRecoveryNotImplemented(Span Location)
   at vbnc.Parser.ParseAttribute(vbnc.ParsedObject Parent)
   at vbnc.Parser.ParseAttributeList(vbnc.ParsedObject Parent, vbnc.Attributes Attributes)
   at vbnc.Parser.ParseAttributeBlock(vbnc.ParsedObject Parent, vbnc.Attributes Attributes)
   at vbnc.Parser.ParseAttributes(vbnc.ParsedObject Parent, vbnc.Attributes ByRef Attributes)
   at vbnc.Parser.ParseAssemblyMembers(vbnc.AssemblyDeclaration Parent, System.String RootNamespace)
   at vbnc.Parser.ParseAssemblyDeclaration(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Parser.Parse(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Compiler.Compile_Parse()
   at vbnc.Compiler.Compile()
   at vbnc.Compiler.Compile(System.String[] CommandLine)
   at vbnc.Main.Main(System.String[] CmdArgs)
/home/Jn1yYw/prog.vb (36,15) : error VBNC90019: Expected '>'.
/home/Jn1yYw/prog.vb (36,15): Compiler error around this location, the compiler hasn't implemented the error message, nor error recovery, so the compiler will probably crash soon.
   at vbnc.Helper.ErrorRecoveryNotImplemented(Span Location)
   at vbnc.Parser.ParseAttributes(vbnc.ParsedObject Parent, vbnc.Attributes ByRef Attributes)
   at vbnc.Parser.ParseAssemblyMembers(vbnc.AssemblyDeclaration Parent, System.String RootNamespace)
   at vbnc.Parser.ParseAssemblyDeclaration(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Parser.Parse(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Compiler.Compile_Parse()
   at vbnc.Compiler.Compile()
   at vbnc.Compiler.Compile(System.String[] CommandLine)
   at vbnc.Main.Main(System.String[] CmdArgs)
/home/Jn1yYw/prog.vb (36,15) : error VBNC99999: Hanging attributes.
/home/Jn1yYw/prog.vb (36,15) : error VBNC30203: Identifier expected.
/home/Jn1yYw/prog.vb (37,11): Compiler error around this location, the compiler hasn't implemented the error message, nor error recovery, so the compiler will probably crash soon.
   at vbnc.Helper.ErrorRecoveryNotImplemented(Span Location)
   at vbnc.Parser.ParseAttribute(vbnc.ParsedObject Parent)
   at vbnc.Parser.ParseAttributeList(vbnc.ParsedObject Parent, vbnc.Attributes Attributes)
   at vbnc.Parser.ParseAttributeBlock(vbnc.ParsedObject Parent, vbnc.Attributes Attributes)
   at vbnc.Parser.ParseAttributes(vbnc.ParsedObject Parent, vbnc.Attributes ByRef Attributes)
   at vbnc.Parser.ParseAssemblyMembers(vbnc.AssemblyDeclaration Parent, System.String RootNamespace)
   at vbnc.Parser.ParseAssemblyDeclaration(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Parser.Parse(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Compiler.Compile_Parse()
   at vbnc.Compiler.Compile()
   at vbnc.Compiler.Compile(System.String[] CommandLine)
   at vbnc.Main.Main(System.String[] CmdArgs)
/home/Jn1yYw/prog.vb (37,11) : error VBNC90019: Expected '>'.
/home/Jn1yYw/prog.vb (37,11): Compiler error around this location, the compiler hasn't implemented the error message, nor error recovery, so the compiler will probably crash soon.
   at vbnc.Helper.ErrorRecoveryNotImplemented(Span Location)
   at vbnc.Parser.ParseAttributes(vbnc.ParsedObject Parent, vbnc.Attributes ByRef Attributes)
   at vbnc.Parser.ParseAssemblyMembers(vbnc.AssemblyDeclaration Parent, System.String RootNamespace)
   at vbnc.Parser.ParseAssemblyDeclaration(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Parser.Parse(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Compiler.Compile_Parse()
   at vbnc.Compiler.Compile()
   at vbnc.Compiler.Compile(System.String[] CommandLine)
   at vbnc.Main.Main(System.String[] CmdArgs)
/home/Jn1yYw/prog.vb (37,11) : error VBNC99999: Hanging attributes.
/home/Jn1yYw/prog.vb (37,11) : error VBNC30203: Identifier expected.
/home/Jn1yYw/prog.vb (38,14) : error VBNC90019: Expected '>'.
/home/Jn1yYw/prog.vb (38,14): Compiler error around this location, the compiler hasn't implemented the error message, nor error recovery, so the compiler will probably crash soon.
   at vbnc.Helper.ErrorRecoveryNotImplemented(Span Location)
   at vbnc.Parser.ParseAttributes(vbnc.ParsedObject Parent, vbnc.Attributes ByRef Attributes)
   at vbnc.Parser.ParseAssemblyMembers(vbnc.AssemblyDeclaration Parent, System.String RootNamespace)
   at vbnc.Parser.ParseAssemblyDeclaration(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Parser.Parse(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Compiler.Compile_Parse()
   at vbnc.Compiler.Compile()
   at vbnc.Compiler.Compile(System.String[] CommandLine)
   at vbnc.Main.Main(System.String[] CmdArgs)
/home/Jn1yYw/prog.vb (38,13) : error VBNC32035: Attributes can only appear just before a declaration.
/home/Jn1yYw/prog.vb (38,22) : error VBNC30203: Identifier expected.
/home/Jn1yYw/prog.vb (39,32) : error VBNC30203: Identifier expected.
/home/Jn1yYw/prog.vb (40,25) : error VBNC30203: Identifier expected.
/home/Jn1yYw/prog.vb (41,19) : error VBNC30203: Identifier expected.
/home/Jn1yYw/prog.vb (42,35) : error VBNC30203: Identifier expected.
/home/Jn1yYw/prog.vb (43,43) : error VBNC90019: Expected '>'.
/home/Jn1yYw/prog.vb (43,43): Compiler error around this location, the compiler hasn't implemented the error message, nor error recovery, so the compiler will probably crash soon.
   at vbnc.Helper.ErrorRecoveryNotImplemented(Span Location)
   at vbnc.Parser.ParseAttributes(vbnc.ParsedObject Parent, vbnc.Attributes ByRef Attributes)
   at vbnc.Parser.ParseAssemblyMembers(vbnc.AssemblyDeclaration Parent, System.String RootNamespace)
   at vbnc.Parser.ParseAssemblyDeclaration(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Parser.Parse(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Compiler.Compile_Parse()
   at vbnc.Compiler.Compile()
   at vbnc.Compiler.Compile(System.String[] CommandLine)
   at vbnc.Main.Main(System.String[] CmdArgs)
/home/Jn1yYw/prog.vb (43,43) : error VBNC99999: Hanging attributes.
/home/Jn1yYw/prog.vb (43,43) : error VBNC30203: Identifier expected.
/home/Jn1yYw/prog.vb (45,22) : error VBNC90019: Expected '>'.
/home/Jn1yYw/prog.vb (45,22): Compiler error around this location, the compiler hasn't implemented the error message, nor error recovery, so the compiler will probably crash soon.
   at vbnc.Helper.ErrorRecoveryNotImplemented(Span Location)
   at vbnc.Parser.ParseAttributes(vbnc.ParsedObject Parent, vbnc.Attributes ByRef Attributes)
   at vbnc.Parser.ParseAssemblyMembers(vbnc.AssemblyDeclaration Parent, System.String RootNamespace)
   at vbnc.Parser.ParseAssemblyDeclaration(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Parser.Parse(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Compiler.Compile_Parse()
   at vbnc.Compiler.Compile()
   at vbnc.Compiler.Compile(System.String[] CommandLine)
   at vbnc.Main.Main(System.String[] CmdArgs)
/home/Jn1yYw/prog.vb (44,21) : error VBNC32035: Attributes can only appear just before a declaration.
/home/Jn1yYw/prog.vb (45,21) : error VBNC32035: Attributes can only appear just before a declaration.
/home/Jn1yYw/prog.vb (45,34) : error VBNC30203: Identifier expected.
/home/Jn1yYw/prog.vb (46,22) : error VBNC90019: Expected '>'.
/home/Jn1yYw/prog.vb (46,22): Compiler error around this location, the compiler hasn't implemented the error message, nor error recovery, so the compiler will probably crash soon.
   at vbnc.Helper.ErrorRecoveryNotImplemented(Span Location)
   at vbnc.Parser.ParseAttributes(vbnc.ParsedObject Parent, vbnc.Attributes ByRef Attributes)
   at vbnc.Parser.ParseAssemblyMembers(vbnc.AssemblyDeclaration Parent, System.String RootNamespace)
   at vbnc.Parser.ParseAssemblyDeclaration(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Parser.Parse(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Compiler.Compile_Parse()
   at vbnc.Compiler.Compile()
   at vbnc.Compiler.Compile(System.String[] CommandLine)
   at vbnc.Main.Main(System.String[] CmdArgs)
/home/Jn1yYw/prog.vb (46,21) : error VBNC32035: Attributes can only appear just before a declaration.
/home/Jn1yYw/prog.vb (46,35) : error VBNC30203: Identifier expected.
/home/Jn1yYw/prog.vb (48,30) : error VBNC90019: Expected '>'.
/home/Jn1yYw/prog.vb (48,30): Compiler error around this location, the compiler hasn't implemented the error message, nor error recovery, so the compiler will probably crash soon.
   at vbnc.Helper.ErrorRecoveryNotImplemented(Span Location)
   at vbnc.Parser.ParseAttributes(vbnc.ParsedObject Parent, vbnc.Attributes ByRef Attributes)
   at vbnc.Parser.ParseAssemblyMembers(vbnc.AssemblyDeclaration Parent, System.String RootNamespace)
   at vbnc.Parser.ParseAssemblyDeclaration(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Parser.Parse(System.String RootNamespace, vbnc.AssemblyDeclaration assembly)
   at vbnc.Compiler.Compile_Parse()
   at vbnc.Compiler.Compile()
   at vbnc.Compiler.Compile(System.String[] CommandLine)
   at vbnc.Main.Main(System.String[] CmdArgs)
/home/Jn1yYw/prog.vb (47,38) : error VBNC32035: Attributes can only appear just before a declaration.
/home/Jn1yYw/prog.vb (48,29) : error VBNC32035: Attributes can only appear just before a declaration.
/home/Jn1yYw/prog.vb (48,37) : error VBNC30203: Identifier expected.
vbnc : Command line : error VBNC30041: Too many errors.
stdout
Standard output is empty