Posts

Showing posts from September, 2009
My new blog present here.

Featured Post

Insights into Sitecore Search: A Definitive Introduction

A key component of digital experience management is effective information retrieval. A simplified approach is required for websites, applications, and platforms containing a lot of material so that consumers can easily get the data they require. This need is met by Sitecore, a well-known name in the field of digital experience platforms (DXPs), which provides powerful and comprehensive search functionality. We will travel into the realm of Sitecore Search in this article, learning about its capabilities, architecture , and the enormous value it offers both developers and end users. Introduction to Sitecore Search    A headless content discovery platform powered by AI , Sitecore Search enables you to build predictive and custom search experiences across various content sources. To extract and index you

What is Delegate in .net(Delegate,Named method,Anonymous method)

A delegate is a type that references a method. Once a delegate is assigned a method, it behaves exactly like that method. The delegate method can be used like any other method, with parameters and a return value. In simple words, delegates are similar to pointer to a function in C++ but delegate are type safe . Delegates can be defined as methods that are used to call other method . The things which we need to consider is that the signature of the calling methods and delegates should match. Example: In C#: Declaration of Delegate: public delegate string AmitKumar(string Amit, string Kumar); Declaration of function: public string mcapassion(string AmitKumar, string AmitKumar_MCA04); Any method that matches the delegate's signature, which consists of the return type and parameters, can be assigned to the delegate. This makes is possible to programmatically change method calls, and also plug new code into existing classes. As long as you know the delegate's signature, you can as

What is WPF and XAML

WPF : Windows Presentation Foundation (WPF) is the code-name of the presentation (user-interfaces) sub system in Windows Vista programming model and is used to create user interfaces. In broad way WPF is the engine that is responsible for creating, displaying, and manipulating user-interfaces, documents, images, movies, and media in Windows Vista. Physically, WPF is a set of libraries that have all functionalty you need to build, run, execute, and manage Windows Vista applications. XAML: XAML is a new descriptive programming language developed by Microsoft to write user interfaces for next generation managed applications. Relation between XAML and WPF: XAML is a new descriptive programming language developed by Microsoft to write user interfaces for next generation managed applications. XAML is used in WPF to represent the controls and code with the help of C#, Visual Basic, and other .NET Framework languages. XAML can be think as ASP.NET and/or Windows Forms in Windows Vista. For exam