Sunday, July 12, 2009

In C# does a dataset occupy more RAM memory if passed by value, reference or out?

In all programming languages passing by reference will take less memory than others

In C# does a dataset occupy more RAM memory if passed by value, reference or out?
Always pass Reference Types as ref or out parameters. That will save memory.


No comments:

Post a Comment