NET - Explain the format of the assembly version stored in the AssemblyInfo file

Explain the format of the assembly version stored in the AssemblyInfo file.

AssemblyVersion/AssemblyFileVersion
Format : [MajorVersion].[MinorVersion].[BuildVersion].[RevisionVersion]
If the assembly is changes such that it’s incompatible with previous versions then MajorVersion or MinorVersion must be changed. If the assembly is still compatible with previous version then BuildVersion or RevisionNumber must be changed.
NET - What are the Enumerations? How to create Enumerations in C#.NET?
What are the Enumerations? How to create Enumerations in C#.NET? - An enumeration is a special type of collection in the .NET Framework......
NET - Define Stream class in .NET. Explain with an example using C#.NET?
Define Stream class in .NET. Explain with an example using C#.NET? - The Stream class gives a view of various types of input and output. Streams involve three fundamental operations:......
Post your comment