What are generic pointers in VB.net??
Source : http://www.codeproject.com/Articles/438868/Inline-MSIL-in-Csharp-VB-NET-and-Generic-Pointers C# lacks generic pointers. it’s silly you can apply the constraint class to a generic and assign null to a variable of T it but, if you applied the constraint struct you couldn't make a pointer variable of T. The reasoning is simple as structures can contain reference field types which you cannot (normally) create a pointer to, but there should still be a way to do this.Usine inline IL to achieve generic pointers.
How to Generic Method to Create and Execute Parameterized SQL Query in .NET 4.0 ?
Example will be helpful.
How to use that!