Tag: Generics

Explain generics in c# example

Generics allow us to design classes and methods decoupled from data types. Generic classes available in System. Collections. Generic namespace.

Read Article

How to convert List To DataTable using generics to pass as tvp(Table-Valued Parameters) as parameter in stored procedures

Very often we need to convert List To DataTable,so that we can pass DataTable to Stored Procedure as Paramter in …

Read Article