I am attempting to create a "dirty form" checking class based on an example found at codeproject.
I am hung up on the first line of one of the classes

public class ControlDirtyTrackerCollection: List<ControlDirtyTracker>

I am unsure how to replicate that : List<> part in vb net.

Thanks

Recommended Answers

All 3 Replies

Public Class ControlDirtyTrackerCollection
Implements List(Of ControlDirtyTracker)


End Class

thank you. I thought that was the case but i couldnt find a reference to prove it.

thanks again

Me bad. That should be Inherits not Implements.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.