In which context Globalization can be used in .NetWhere Globalization is helpfull .What are the Types of globalization we use.What namespace we use for Globalization?
Latest Answer: There are Six Validation Controls
RequiredFieldValidator,
RangeValidator,
RegularExpressionValidator,
CompareValidator,
CustomValidator,
ValidationSummary ...
Latest Answer: String is immutable where as stringbuilder is mutable. That means: The value in a string can not be modified once it has been created. When you modify a string in your code, it actually creates a new string with the modified value and the string object ...
Latest Answer: Value data types is one which store the actual value of interest. Value type is always stack allocated.Ex: StructureReference Data type is one which contains references of the data which in nothing but the address of the data. Reference is always heap ...
Latest Answer: The System.Reflection namespace contains classes and interfaces that provide a managed view of loaded types, methods, and fields, with the ability to dynamically create and invoke types.System.Assembly contains the information about the assembly ...
Latest Answer: When your application actually exectutes, the MSIL Code is "Just in time" compiled into machine code by JITTER( Just in time Compiler), Normally your entire application is not compiled from MSIL to machine code, only methods that are actually called during ...
What are the events fired when web form page has user control in it? What is sequence of those events?
Latest Answer: We can retrieve data from database using ADO.NET we can use connection string in which data reader data adapter can be used. Data set are used for retrieve bulk of data.We can also use data binder which binds the data.The cell in .Net is used for changing ...
What is practical difference between abstract class and interface? What is practical implementation of polymorphism?
What is mean by mutable and immutable classes? Please give any examples.
Latest Answer: string is a immutable...stringbuilder is mutable..string builder can have namespace system.text.... ...
View page << Previous 1 2 [3] 4 5 6 7 8 9 10 Next >>

Go Top