GC.Collect can be used at any time to force Garbage Collector
to Clear Memory.
Major Built-in Reference types:
1.
System.Object
2.
System.String
3.
System.Text.StringBuilder
4.
System.Array
5.
System.IO.Stream
6.
System.Exception
String is immutable. Use String.Concat, String.Join method.
int [] ar = {3,1,2};
Use Array.Sort(ar) to Sort arrays.
System.IO.Stream contains most commonly used stream classes.
System.Network.Sockets contains network streams.
System.Security.Cryptography contains encrypted streams.
System.IO Common Streams
System.IO.FileStream
System.IO.MemoryStream
System.IO.StremReader (ReadToEnd()
can be used to read all data)
System.IO.StreamWriter
Comments