AWP
AWP
Unit 1
2) basic C# syntax
- array : int [ ] number = { 1,2,3,4}
- Arraylist : ArrayList dynamiclist = new ArrayList()
- dynamiclist.add("one")
- String methods: string mystring = "yash"
- mystring.Trim(), mystring.Substring(0,4), .To upper(),.To Replace( "Y","M"),.Length()
3) explain assembly?
- assemblies is a collection of code files that are complied into executable or Dynamic link library
- Private Assemblies : An assembly that soly belong to single application, this assemblies not
intent to share with anyone
- they are used to store application specific code and resource
- simple to deploy and use the automatic loaded in .NET when application start
- Shared Assemblies: an assembly used by several programmes
- it is found in Global Assembly Cache or a common directory
- they are used to store resource and code shared by various applications
- Dynamic link library: it a assembly can be used by multiple applications DLL do not need a
strong name
4) explain inheritance ?
- answer link
Unit 2
2) explain web.config?
- the web config file uses a predefined XML format
- the entire file is nested in a root<configuration>element
- inside this element are several more subsection
- is a case sensitive like all XML documents
Unit 3
☝️
1) user defined exception ?
- IMG
Unit 4