├── Area.csproj ├── Program.cs ├── ProjectSettings.json ├── TM03_Arrays.rar ├── TM03_Control Statements.rar ├── TM03_Data Types.rar ├── TM03_Operators.rar ├── TM04_Exercise OOP.zip ├── TM04_Proj BookAuthorManagement.zip ├── TM05_Excercise Inheritance.zip ├── TM05_Proj InterestCalculator.zip ├── TM06_Handson_Generics.zip ├── TM06_Proj MovieTicketBooking.zip ├── TM07_EXERCISES_windows-forms.zip ├── TM08-PROJ.rar ├── TM08_HandsOnMicrosoft_SQL_SERVER.zip ├── TM09_Ado.netPROJ.zip ├── TM11.zip ├── TM11_Handson.zip ├── VSWorkspaceState.json └── slnx.sqlite /Area.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | netcoreapp3.1 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace Area 4 | { 5 | class Program 6 | { 7 | public static void area(float a) 8 | { 9 | double area = 3.14 * a * a; 10 | Console.WriteLine("{0}",area); 11 | } 12 | public static void area(int l,int b) 13 | { 14 | double area = l*b; 15 | Console.WriteLine(area); 16 | } 17 | public static void area(float h, float b) 18 | { 19 | double area = h * b/2; 20 | Console.WriteLine(area); 21 | } 22 | static void Main(string[] args) 23 | { 24 | area(3); 25 | area(4,5); 26 | area(4f,4f); 27 | 28 | } 29 | } 30 | 31 | } 32 | -------------------------------------------------------------------------------- /ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CurrentProjectSetting": null 3 | } -------------------------------------------------------------------------------- /TM03_Arrays.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritambasu/WIPRO-Dotnet/45c7c2775ddfcb72a39c3333f1b315aa58a4b39d/TM03_Arrays.rar -------------------------------------------------------------------------------- /TM03_Control Statements.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritambasu/WIPRO-Dotnet/45c7c2775ddfcb72a39c3333f1b315aa58a4b39d/TM03_Control Statements.rar -------------------------------------------------------------------------------- /TM03_Data Types.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritambasu/WIPRO-Dotnet/45c7c2775ddfcb72a39c3333f1b315aa58a4b39d/TM03_Data Types.rar -------------------------------------------------------------------------------- /TM03_Operators.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritambasu/WIPRO-Dotnet/45c7c2775ddfcb72a39c3333f1b315aa58a4b39d/TM03_Operators.rar -------------------------------------------------------------------------------- /TM04_Exercise OOP.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritambasu/WIPRO-Dotnet/45c7c2775ddfcb72a39c3333f1b315aa58a4b39d/TM04_Exercise OOP.zip -------------------------------------------------------------------------------- /TM04_Proj BookAuthorManagement.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritambasu/WIPRO-Dotnet/45c7c2775ddfcb72a39c3333f1b315aa58a4b39d/TM04_Proj BookAuthorManagement.zip -------------------------------------------------------------------------------- /TM05_Excercise Inheritance.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritambasu/WIPRO-Dotnet/45c7c2775ddfcb72a39c3333f1b315aa58a4b39d/TM05_Excercise Inheritance.zip -------------------------------------------------------------------------------- /TM05_Proj InterestCalculator.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritambasu/WIPRO-Dotnet/45c7c2775ddfcb72a39c3333f1b315aa58a4b39d/TM05_Proj InterestCalculator.zip -------------------------------------------------------------------------------- /TM06_Handson_Generics.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritambasu/WIPRO-Dotnet/45c7c2775ddfcb72a39c3333f1b315aa58a4b39d/TM06_Handson_Generics.zip -------------------------------------------------------------------------------- /TM06_Proj MovieTicketBooking.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritambasu/WIPRO-Dotnet/45c7c2775ddfcb72a39c3333f1b315aa58a4b39d/TM06_Proj MovieTicketBooking.zip -------------------------------------------------------------------------------- /TM07_EXERCISES_windows-forms.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritambasu/WIPRO-Dotnet/45c7c2775ddfcb72a39c3333f1b315aa58a4b39d/TM07_EXERCISES_windows-forms.zip -------------------------------------------------------------------------------- /TM08-PROJ.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritambasu/WIPRO-Dotnet/45c7c2775ddfcb72a39c3333f1b315aa58a4b39d/TM08-PROJ.rar -------------------------------------------------------------------------------- /TM08_HandsOnMicrosoft_SQL_SERVER.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritambasu/WIPRO-Dotnet/45c7c2775ddfcb72a39c3333f1b315aa58a4b39d/TM08_HandsOnMicrosoft_SQL_SERVER.zip -------------------------------------------------------------------------------- /TM09_Ado.netPROJ.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritambasu/WIPRO-Dotnet/45c7c2775ddfcb72a39c3333f1b315aa58a4b39d/TM09_Ado.netPROJ.zip -------------------------------------------------------------------------------- /TM11.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritambasu/WIPRO-Dotnet/45c7c2775ddfcb72a39c3333f1b315aa58a4b39d/TM11.zip -------------------------------------------------------------------------------- /TM11_Handson.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritambasu/WIPRO-Dotnet/45c7c2775ddfcb72a39c3333f1b315aa58a4b39d/TM11_Handson.zip -------------------------------------------------------------------------------- /VSWorkspaceState.json: -------------------------------------------------------------------------------- 1 | { 2 | "ExpandedNodes": [ 3 | "" 4 | ], 5 | "PreviewInSolutionExplorer": false 6 | } -------------------------------------------------------------------------------- /slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pritambasu/WIPRO-Dotnet/45c7c2775ddfcb72a39c3333f1b315aa58a4b39d/slnx.sqlite --------------------------------------------------------------------------------