TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About Builder
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Sandeep Mishra (8)
Dhruvin Shah (7)
Cr Bhargavi (6)
Satya Karki (5)
Mahesh Chand (4)
Jaimin Shethiya (3)
Sardar Mudassar Ali Khan (3)
Prashant Bansal (3)
David Mccarter (3)
Ajay Kumar (2)
CSharp TV (2)
Abhishek Singhal (2)
C# Curator (2)
Rikam Palkar (2)
George (1)
Swesh S (1)
Javeed M Shaikh (1)
Uday Dodiya (1)
Madhanmohan Devarajan (1)
Rasul Huseynov (1)
Sanjay Kumar (1)
Aman Gupta (1)
Vishal Yelve (1)
Ano Mepani (1)
Manikandan Murugesan (1)
Vinoth Rajendran (1)
Steven Woolston (1)
Syed Shanu (1)
Lokendra Singh (1)
Hamid Khan (1)
Vineet Kumar (1)
Sourav Kayal (1)
Ankit Mori (1)
Mithilesh Tata (1)
Ziggy Rafiq (1)
Madhan Raghu (1)
Jignesh Trivedi (1)
Srihari Chinna (1)
Vijai Anand Ramalingam (1)
Bhavesh Raval (1)
Abhishek Yadav (1)
Matthew Cochran (1)
Prakash Tripathi (1)
Surya Prakash (1)
Muhammad Aqib Shehzad (1)
Tural Suleymani (1)
Vitalii Honcharuk (1)
Venkatasubbarao Polisetty (1)
Ayushi Omray (1)
Anant Vernekar (1)
Shweta Lodha (1)
Chandan Sharma (1)
Sachin Kalia (1)
Anubhav Chaudhary (1)
Dhairya Krishnat (1)
Shreesh Raj (1)
Guest User (1)
paulyau (1)
Chandresh Pansuriya (1)
Vishal Gilbile (1)
Mushtaq M A (1)
Naveenkumar Paramasivam (1)
Related resources for Builder
No resource found
SSRS (2) --- Client Setup: SSDT and Report Builder
11/11/2024 8:34:30 PM.
This article discusses SSRS (2) --- Client Setup: SSDT and Report Builder
Custom Copilot: Fetch and Process SharePoint List Data Using Prompt AI Builder
9/30/2024 3:56:08 AM.
It guides users through creating custom workflows in Copilot Studio, automating data retrieval, and utilizing AI to process and present information efficiently, enhancing task management and decision-
How Does Your "Code Smell"
9/24/2024 4:16:49 AM.
"Code smell" refers to indicators in code that suggest potential problems. Common examples include poor exception handling, magic numbers, and inefficient string operations. Other issues inv
Builder Pattern: Constructing Complex Objects
9/14/2024 1:58:12 PM.
In this article, we learn about Builder Pattern: Constructing Complex Objects. The Builder Pattern simplifies the creation of complex objects through step-by-step construction. It enables flexibility,
Power Platform: Retrain the Invoice Processing AI Model
9/12/2024 11:27:08 AM.
This blog aims to provide a comprehensive guide on how to retrain your invoice processing AI model within Power Platform. By following these steps, you can ensure that your model adapts to various inv
Dynamic LINQ with Gridify in .NET
8/30/2024 6:07:05 AM.
Learn how to leverage Gridify to simplify complex filtering, sorting, and pagination tasks. Perfect for developers seeking to optimize and extend their use of LINQ in C# applications.
Builder Design Pattern in .NET Core C#
8/9/2024 5:34:59 AM.
The Builder Design Pattern in .NET simplifies constructing complex objects by using a step-by-step approach. It involves components like Abstract Builder, Concrete Builder, Director, and Product to se
Understanding Builder Design Pattern
8/1/2024 6:14:40 AM.
The Builder is a pattern that belongs to the creational design patterns family. What makes it special is its ability to provide abstraction to the client by encapsulating different types of the same o
Detailed Explanation of Builder Design Pattern in C#
7/22/2024 6:26:29 AM.
The Builder design pattern is a creational pattern used to construct complex objects step by step. It separates the object's construction from its representation, allowing for varied configuration
Builder Design Pattern
7/19/2024 7:01:46 AM.
The Builder Design Pattern is a creational design pattern used to construct complex objects step by step. It separates the construction of an object from its representation, allowing for different typ
Understanding Builder Design Pattern
7/1/2024 6:57:09 AM.
Discover the Builder Design Pattern, a creational pattern that separates the construction of a complex object from its representation. Learn how it simplifies object creation, especially for objects r
Dynamic LINQ Query In C# Using Predicate Builder
6/20/2024 11:42:33 AM.
This technique allows runtime composition of query predicates using logical conditions such as AND, OR, and NOT. By leveraging Expression Trees and lambda expressions, developers can programmatically
Deploying A Simple Bot With Bot Builder SDK Using Visual Studio 2017
6/20/2024 10:12:40 AM.
Learn to create and configure bots using Visual Studio with the Bot Application template and Bot Builder SDK for .NET. Test and debug bots locally using the Bot Emulator, ensuring seamless interaction
Prompt And Waterfall Dialog In Bot V4 Framework Bot Builder š .NET Core
6/14/2024 10:39:37 AM.
Dialogs in the Bot Framework structure bot interactions, managing flow, validations, and user input. Key components like DialogSet and DialogContext manage dialog states and sequencing. Prompts handle
String Replacement With Named String Placeholders
6/14/2024 10:38:51 AM.
The anonymous nature of placeholders in the String.Format method can make it confusing. Find out how to use named string placeholders in your code.
Getting Started with ML.NET Model Builder for Using in ASP.NET Core
6/11/2024 9:38:23 AM.
Learn how ML.NET Model Builder simplifies ML application development by helping you build, train, and deploy models efficiently. This guide explains the basics of ML.NET, including data loading, model
Understanding String, StringBuffer and StringBuilder in Java
6/6/2024 4:51:14 AM.
This article delves into the fundamental concepts of String, StringBuffer, and StringBuilder in Java. It explains the differences between these three classes, their specific use cases, and performance
Middleware In .NET Core
6/5/2024 11:10:55 AM.
This article covers middleware concepts including its definition, order of execution, creation using IApplicationBuilder, and methods like Run, Use, and Map. It explains custom and built-in middleware
Difference between String & StringBuilder in .NET C#
6/5/2024 5:21:33 AM.
In .NET C#, String is immutable, meaning any modification creates a new instance, which can be inefficient for frequent changes. StringBuilder is mutable, designed for dynamic string manipulation with
String Builder in .NET C#: Usage, and Example
5/26/2024 12:11:21 PM.
Since the string type in C# is immutable, we are unable to alter its contents once they are created. This implies that attempting to modify a string-type object after it has been created will result i
Why Strings Are Immutable in .Net
5/1/2024 11:05:35 AM.
Explore the concept of immutable strings in .NET, understanding how strings are allocated in memory, and why they are immutable. Learn how immutability enhances memory management, prevents race condit
Improve Performance of .NET Application
4/24/2024 7:42:39 AM.
Enhance .NET application performance through techniques like code profiling, caching, asynchronous programming, and database query optimization. Implementing these strategies boosts efficiency and res
What Is Startup Class And Program.cs In ASP.NET Core
4/23/2024 8:32:24 AM.
Learn about the role of Program.cs and Startup.cs in ASP.NET Core applications. Understand their functions, including configuring the HTTP pipeline, middleware, and dependency injection. Explore vario
String vs StringBuilder in C# with Example
3/29/2024 10:53:45 AM.
In this article, we have explained the difference between String and StringBuilder in C# with example. Know the basic knowledge of String and StringBuilder in C#.
Automate Candidate Screening with ChatGPT AI in Process Automation
3/27/2024 4:30:29 AM.
Microsoft introduces the ChatGPT model, revolutionizing customer interactions and internal communication. Businesses adopt ChatGPT for automated tasks, enhancing productivity and personalized experien
How To Truncate String In C#
3/20/2024 4:15:20 PM.
If you're looking to learn how to truncate a string in C#, then you've come to the right place. This article will provide you with the necessary information to accomplish this task efficiently
Step By Step Guide To Create SSRS Reports App In SharePoint
3/20/2024 11:51:58 AM.
Learn step-by-step how to integrate SSRS, utilize SharePoint lists as data sources, and deploy reports seamlessly. Achieve effective data visualization and enhance business intelligence within your Sh
Shadow Properties In Entity Framework Core
3/7/2024 11:32:17 AM.
Entity framework core added many new features that are already present in older entity framework versions. One of the features of the Entity framework core is "Shadow Properties". The featur
Code Only Design using ADO.NET Entity Framework 4.0
3/7/2024 8:43:43 AM.
This code snippet implements Code Only Design in ADO.NET Entity Framework 4.0, connecting to a SQL Server database, configuring entities, and binding data to a GridView with exception handling.
How To Create A Form Using Microsoft Forms
3/4/2024 11:49:31 AM.
Create custom forms effortlessly with Microsoft Forms. Gather data, conduct surveys, and streamline feedback collection. Customize questions, share forms easily, and analyze responses seamlessly withi
AI Builder Platform for Effortless Resume and Invoice Handling
3/4/2024 11:29:05 AM.
The AI Builder platform streamlines resume and invoice handling by automating data extraction and analysis. It boosts efficiency and accuracy, enabling effortless processing of documents for enhanced
Reactive Forms In Angular with Practical Example
3/1/2024 6:05:44 AM.
Angular is a popular framework for building dynamic web applications, and one of its key features is its powerful Forms module. Angular offers two types of forms: template-driven forms and reactive fo
An Instant API using Data API Builder
2/29/2024 11:34:05 AM.
In the session, you will learn how to create an applications API layer from a single configuration file.
AI Builder in Power Automate: Boosting Business with AI Features
2/14/2024 4:56:02 AM.
In the digital era, Microsoft's AI Builder democratizes AI, making it accessible to all. Seamlessly integrated with Power Apps and Power Automate, it enables effortless creation and deployment of
Understanding and Implementing the Builder Pattern in C# .NET
2/1/2024 7:38:36 AM.
The Builder Pattern in C# .NET empowers developers to construct complex objects step by step, enhancing configurability and code maintainability. Learn its components, implementation, and benefits for
Track Customer Reviews using AI
1/15/2024 5:34:39 AM.
Track customer reviews using AI
ID Cards Data Extraction using Power Automate and AI builder
12/26/2023 7:13:23 AM.
ID Cards Data Extraction using Power Automate and AI Builder.
Receipt Management with Power Automate & AI Builder
12/13/2023 5:56:52 AM.
Simplify Receipt Management with Power Automate & AI Builder. Discover the power of automation with STW Automation, leveraging Power Automate and AI Builder to streamline receipt data entry and pr
Extract text from Image and PDF Using Power Automate and AI Builder
11/29/2023 6:19:02 AM.
Extract text from Image and PDF - Using Power Automate and AI Builder. In our data-centric world, extracting valuable insights from diverse sources, including images and PDFs, is crucial. Power Automa
Invoice Scanning Process Automation Using Power Automate And AI Builder
11/3/2023 6:36:08 AM.
Your article provides a comprehensive and insightful guide to leveraging the capabilities of Power Automate and AI Builder for automating the invoice scanning process. The step-by-step breakdown and t
Use Data API builder with Azure Cosmos DB
11/1/2023 7:15:42 AM.
Use Data API builder with Azure Cosmos DB. The guide explains how to build a Data API using Azure Cosmos DB. It outlines steps such as creating a database container, adding a Book schema, obtaining th
CRUD Operations in ASP.NET Core with 3-Tier Harmony and Command Builder Design Pattern
10/4/2023 9:21:02 AM.
Command Builder Design Pattern in an ASP.NET Core Web API using a Three-Tier Architecture for CRUD operations. For the sake of this example, let's assume you have a model named CSharpCornerArticle
Strings in C# .NET
10/1/2023 1:45:28 PM.
This article provides a brief introduction to Strings in C# .NET.
Object Instantiation in C#: Part IV - The Builder Pattern
9/17/2023 9:55:30 PM.
There are many ways to approach object instantiation. In this article weāll cover a few of the patterns used to instantiate objects. In the next article, we will take a look at the builder pattern for
Comparison of String and StringBuilder in C#
9/12/2023 9:58:01 AM.
This article describes the differences between a String and a StringBuilder in C#, their use cases and performance comparisons.
SignalR to enable real-time communication between clients and the server
9/5/2023 2:37:57 AM.
SignalR to enable real-time communication between clients and a server. SignalR is a library for ASP.NET that allows you to build real-time, interactive web applications. In this example, we'll cr
AI-Powered Invoicing Workflow Enhancement
8/25/2023 8:50:16 AM.
Seamless Invoicing: Leveraging AI for Workflow Enhancement
Training an AI Model Using Microsoft Power Automate AI Builder
8/25/2023 6:24:21 AM.
Unlock AI's potential with Microsoft's Power Automate AI Builder. Seamlessly create AI models for predictions, text extraction, and more. Discover step-by-step training, from data identificati
AI Builder Enhances Power Automate's Capabilities
8/25/2023 6:11:47 AM.
Unlock the synergy of Microsoft's AI Builder and Power Automate, propelling organizations toward efficient automation. Craft AI models effortlessly, transforming manual tasks into streamlined proc
How To Fetch API Data Using FutureBuilder Widget In Flutter
8/16/2023 12:15:52 PM.
In this article, you will learn about how to fetch API data using FutureBuilder widget in Flutter.
ListView Widget In Flutter
8/16/2023 7:29:15 AM.
In this article, you will learn about ListView and all its types in Flutter.
How to Use AI Builder in Power Apps?
8/9/2023 8:55:40 AM.
Learn how to utilize Microsoft's AI Builder in Power Apps to perform sentiment analysis on text data. Enhance user experiences, understand feedback, and make data-driven decisions with this compre
AI Builder Sentiment Analysis: Unveiling Text Analysis Power
8/4/2023 7:35:59 AM.
Discover the potential of AI Builder, a powerful tool within Power Apps, for sentiment analysis. Harness AI and NLP to understand customer emotions, enhance experiences, and drive data-driven decision
Empowering Azure using AI Builder
8/1/2023 8:25:38 AM.
AI Builder in Microsoft Power Apps and Power Automate offers prebuilt AI models for automation, data analysis, and decision-making without extensive coding.
Adding Chart Control to SSRS Reports
7/27/2023 4:17:05 AM.
In this article, I will discuss how to add chart controls to reports defined in SSRS. To work with this, I will use a sample report which I showcased in my article Basics of SSRS.
How To Troubleshoot Salesforce Process Builder Flows And Other Development Artifacts
7/21/2023 9:01:07 AM.
In this article, we will look into the detailed configuration steps to enable Salesforce development environment to support debugging of development artifacts like Workflows, Database Queries, REST AP
Working With Salesforce Process Builder - Part Two
7/21/2023 8:35:58 AM.
In this blog, we will look for another process automation to solve another real-time business problem using Process Builder.
Working With Salesforce Process Builder - Part One
7/21/2023 8:28:41 AM.
In this demo, we will explore the Process Builder tool by developing a process targeting a specific business problem. It is more focused on understanding and implementation of Process Type, Trigger, C
Real World Coding Issues: Part I
6/29/2023 9:08:43 AM.
I hope you read all the articles in this series so you too can improve the performance and memory issues along with the common code issues that I see in the projects where I work. Most of the code sam
C# StringBuilder Tutorial With Code Examples
2/10/2023 4:44:45 AM.
C# StringBuilder is useful for concatenating multiple strings. The code examples demonstrate how to use a StringBuilder in C#.
StringBuilder and String Concatenation
2/9/2023 6:48:35 AM.
C# String Builder represented by the StringBuilder class in c# is used to concatenate strings in C# and provides string modifications methods including StringBuilder.Append(), StringBuilder.Remove(),
Convert HTML String To PDF Via iTextSharp Library And Download
12/21/2022 3:52:27 PM.
In this article, we will see how to convert HTML strings to PDF by using a third party PDF generation library.
String Vs StringBuilder In C#
10/26/2022 9:03:33 AM.
The differences between string and StringBuilder in .NET platform
Speeding Up The StringBuilder Using An ObjectPool
8/28/2022 4:00:51 PM.
In this article, you will learn how to speed Up the StringBuilder Using an ObjectPool.
Working with Strings in VB.NET
8/4/2022 5:59:08 AM.
This article is VB.NET version of Working with Strings in .NET using C#.
Advanced Entity Framework Core Tips In Practice: DbContext separation, Fluent API and Entities configuration
1/11/2022 3:12:18 AM.
I am describing the practical aspects of working with Entity Framework Core. In this part, I am touching DbContext separation, Fluent API and Entities configuration.
Use CRM REST Builder In Dynamics CRM
9/22/2021 5:24:05 PM.
One of the common scenarios is to work with CRM Web APIs to get details of records that are present in Dynamics CRM. To quickly test CRM WEB API requests, CRM REST Builder was used, which needs to be
The Forward And Backward Shift String Problem
6/23/2021 2:13:22 AM.
We have a simple problem, we are given a string and we have to check if the new strings formed by forward shift and backward shift are the same or not.
Quick Start on Builder Design Pattern
6/9/2021 12:54:45 PM.
Understanding of Builder design pattern with a real-world example and technical implementations in C#.
Performance Analysis For String and StringBuilder
5/27/2021 7:20:47 AM.
This article will give you an overview of when and how to use the String and StringBuilder classes with proper statistical data using the CLR Profiler.
How to Add TextBox Dynamically Using JavaScript in ASP.Net
5/6/2021 9:20:47 AM.
Here, you will see how to create a TextBox upon each button click using JavaScript and CSS.
What Is Power BI Report Builder And How To Design Paginated Report Using Power BI Report Builder
4/19/2021 1:29:57 PM.
This article describes Power BI Report Builder and how to design Paginated Report using Power BI Report Builder
Develop AI enabled Applications in PowerApps using AI Builder - Power Platform Virtual Conference
3/16/2021 10:53:50 AM.
This session is about āDevelop AI enabled Applications in PowerApps using AI Builderā in Power Platform Virtual Conference 2021.
Custom Button With TagBuilder Using MVC Razor Engine
3/3/2021 5:34:05 AM.
This article is primarily about the Custom Button with TagBuilder in MVC with Razor View Engine.
AI Builder in Power Automate/Apps with an Example of Form Processing
2/10/2021 4:30:46 AM.
AI Builder is part of Microsoft Power Platform. It helps your business process to use Artificial Intelligence to automate processes and get insights from your data in Power Apps and Power Automate.AI
What is AI Builder
2/9/2021 5:35:08 AM.
AI Builder provides functionality to automate processes and predict outcomes to help improve business performance.
Registration Builder Class in .NET 4.5
2/5/2021 7:52:40 AM.
In this article you will learn about the newly introduced Registration Builder Class in .NET 4.5.
What is Power BI Report Builder?
2/1/2021 3:34:02 PM.
In this article, you will learn about Power BI Report Builder.
Multi-Layout Form Processing Using PowerApps And AI Builder
2/1/2021 3:18:34 PM.
In this article, we will learn how we can process Multi-Layout Forms using Power Apps and Form Processing AI Builder.
Multi-Layout Form Processing Using AI Builder
2/1/2021 8:33:05 AM.
Sometimes we have a different layout for our invoices and forms. During this article, we will talk about how to process multi-layout forms with the single AI builder form processing model.
Pie And Bar Chart Design In SSRS (RDL) Report Using Microsoft Report Builder
1/28/2021 3:08:55 PM.
In this article, you will learn about Pie and Bar Chart Design in SSRS (RDL) Report Using Microsoft Report Builder Tool.
SSRS (RDL) Report Design Using Microsoft Report Builder
1/25/2021 6:31:36 PM.
This article describes how to design SSRS reports using Microsoft Report Builder
Create AI Model Using AI Builder To Extract Data From Document In Power Platform
1/12/2021 3:32:29 PM.
In this article, you will learn how to create AI Model using AI Builder to Extract Data from Document in Power Platform.
How To Use StringBuilder And File Class For .NET Application
11/23/2020 8:17:40 AM.
Here, I am going to share how and why should we create error log in our application.
Builder Pattern In C#
11/23/2020 4:31:02 AM.
In this article, we will learn about Builder Pattern in C#.
Basic Database Operations in ADO.NET
11/2/2020 5:02:03 AM.
This Article will show the basic database transactions select, insert update and delete.
Command Object, Command Builder, Data Adapter object, ADO.NET.
10/30/2020 2:24:15 AM.
In this article I will explain about Command object, Command Builder and Data Adapter object in ADO.NET.
ADO.NET Objects: Part I
10/29/2020 7:27:45 AM.
In this article I will explain about ADO.NET objects. This will help you in understanding them in an easy manner.
Business Card Reader Using AI Builder In PowerApps
8/9/2020 2:56:37 PM.
This article teaches how to automatically process business card information in PowerApps, take a photo of the business card, scan it in PowerApps and store this card information in your database.
Receipt Processing Using AI Builder In PowerApps
8/6/2020 9:01:28 AM.
During this article, we will develop a AI based PowerApp which scans receipt and process the receipt with OCR technique and store the information to SharePoint list.
Coding Faster With The dotNetTips Utility - StringBuilder Extensions
6/24/2020 10:20:15 PM.
In this article you will learn about coding faster with the dotNetTips Utility - StringBuilder Extensions.
Creating Table With Reactive Forms In Angular 9 Using PrimeNg Table
6/15/2020 11:51:47 PM.
Article showing reactive form capabilities & how we can create a Table using ReactiveForms in Angular 9 using PrimeNg TurboTable.
Alert Builder In Android - Kotlin
6/11/2020 12:19:51 AM.
In this article, we will learn how to work with Alerts in Android using Kotlin. If you are new to Kotlin read my previous articles.
Builder Design Pattern
5/6/2020 1:44:28 AM.
As we know there are 3 types of design pattern categories, Creational, Structural, and Behavioural. The Builder design pattern falls under a creational design pattern, as it deals with creating object
Composite And Builder Design Pattern With A Tree
4/26/2020 10:14:40 PM.
In this article, we cover what is the composite pattern, and what is this useful for?
Get Started Building With Form Processing AI Model - Power Platform AI Builder Series - Part Two
4/15/2020 9:25:35 AM.
Welcome to Power Platform AI Builder Series. In this article, we will talk about how we can build an AI model for Form Processing.
Train And Publish Form Processing AI Model - Power Platform AI Builder Series - Part Three
4/15/2020 9:24:01 AM.
Welcome to Power Platform Step by Step Seies. During this session, we will talk about how we can Train and Publish our Form Processor AI Model.
Overview Of Power Platform AI Builder - Power Platform AI Builder Series - Part One
4/15/2020 9:03:09 AM.
Welcome to PowerPlatform with AI series. During this entire series, we will talk about one of the important components of AI Builder which is ā āForm Processingā.The main purpose of this series to l
Build Power Apps Canvas App Consuming Form Processing AI Model - Power Platform AI Builder Series - Part Four
4/13/2020 8:54:52 AM.
In this article, we will talk about how we can consume Form Processor AI model in Power Apps and process our documents. Once a document is processed with the Form Processor component, we need to pre-p
Creating Custom Objects and Fields Using Schema Builder
3/13/2020 3:45:12 PM.
In this article, I am going to explain how to create custom objects and fields using schema builder.