This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System.Collections.Generic; | |
| namespace UnderstandCollections | |
| { | |
| internal class Program | |
| { | |
| private static void Main(string[] args) | |
| { | |
| int count = 100; | |
| var collectionSet = new CollectionSet(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections; | |
| using System.Collections.Generic; | |
| using System.Diagnostics; | |
| namespace HashTableVsDictionary | |
| { | |
| internal class Program | |
| { | |
| private static void Main(string[] args) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Threading; | |
| namespace NeedOfActionDelegate | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| MachineUpdate machineUpdate = new MachineUpdate(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Threading; | |
| namespace NeedOfDelegates | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| MachineUpdate machineUpdate = new MachineUpdate(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| namespace NeedOfPolymorphism | |
| { | |
| enum UOM | |
| { | |
| Gram, | |
| Litre | |
| } |