I seem to be having an issue with the C# version of the project. The following issues.
The type or namespace name List could not be found
List<string> names = new List<string>();
Hi carrzkiss,
You just need to add the below namespace.
Namespace
C#
using System.Collections.Generic;
VB.Net
Imports System.Collections.Generic
© COPYRIGHT 2024 ASPSnippets.com ALL RIGHTS RESERVED.