Sunday, March 27, 2011

.Net FAQ


  • Difference between a.Equals(b) and a == b If both a and b are value type then then you will get same result in a.Equals(b) and a == b. but in case of reference type both behaves differently : eg. string a = new string(new char[] {'d', 'a', 'n', 'c', 'e'}); string b = new string(new char[] {'d', 'a', 'n', 'c', 'e'}); object c = a; object d = b; Console.WriteLine (a==b); Console.WriteLine (a.Equals(b)); Console.WriteLine (c==d); Console.WriteLine (c.Equals(d)); } } Output will be; True True False True FAQ

Master page events Events



  • Master Page Child Control Initialization

  • Content Page Child Control Initialization

  • Master Page Initialization

  • Content Page Initialization

  • Content Page Load

  • Master Page Load

  • Master Page Child Controls Load

  • Content Page Child Controls Load

How IIS Process ASP.NET Request http://www.dotnetfunda.com/articles/article821-beginners-guide-how-iis-process-aspnet-request-.aspx

http://computerauthor.blogspot.com/2011/04/sql-server-interview-question-what-is.html

Related Posts:

  • .Net FrameworkWhen compiling to managed code, the compiler translates your source code into Microsoft intermediate language (MSIL), which is a CPU-independent set o… Read More
  • static constructorA static constructor is used to initialize any static data, or to perform a particular action that needs to be performed once only. It is called aut… Read More
  • C# FAQ #1C#FAQ #1 Collected from the Internet: What does the modifier protected internal in C# mean? The Protected Internal can be acce… Read More
  • .Net FAQDifference between a.Equals(b) and a == b If both a and b are value type then then you will get same result in a.Equals(b) and a == b. but in case of … Read More
  • C# FAQ 21.Does C# support multiple-inheritance?Ans. No! It may be achieved however, using interfaces.2.Who is a protected class-level variable available to?… Read More

0 comments:

Popular Posts

Recent Posts

Unordered List

Text Widget

Blog Archive