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 Compile
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Jignesh Trivedi (6)
Vishal Nayan (3)
Jitendra Mesavaniya (2)
Rohini Parade (2)
Tahir Ansari (2)
Ashutosh Gupta (2)
Tural Suleymani (2)
Banketeshvar Narayan (2)
Mahesh Chand (2)
Munib Butt (2)
Shivprasad (2)
C# Curator (2)
Adarsh Nigam (1)
Muhammad Aqib Shehzad (1)
Debasis Saha (1)
Sai Kumar Koona (1)
Ajay Kumar (1)
Lokendra Singh (1)
Mahesh Alle (1)
Ramaprasad Upadhyaya (1)
Nipun Tomar (1)
Jaimin Shethiya (1)
Rohatash Kumar (1)
Praveen Kumar (1)
Vijay Prativadi (1)
Alpesh Maniya (1)
Naimish Makwana (1)
Ziggy Rafiq (1)
Sanwar Ranwa (1)
Sandip Jadhav (1)
Jefferson S. Motta (1)
Sarthak Varshney (1)
Malcolm Crowe (1)
Keyur (1)
Shubhankar Banerjee (1)
Shashangka Shekhar (1)
Vithal Wadje (1)
Sam Hobbs (1)
Mark Pelf (1)
Sudipta Sankar Das (1)
George (1)
Ranganath Prasad (1)
Anu Viswan (1)
Thiagarajan Alagarsamy (1)
Namrah Khurram (1)
Santhakumar Munuswamy (1)
Ananth G (1)
Rion Williams (1)
Amir Ali (1)
Harikrishnan N (1)
Marcus (1)
Satendra Singh Bhati (1)
Sekhar Srinivas (1)
Mike Gold (1)
Mohsin Arif (1)
Manish Agrahari (1)
Suraj Pant (1)
Akhil Mittal (1)
Akshay Phadke (1)
Bhuvanesh Mohankumar (1)
Saurabh Rai (1)
Rick Malek (1)
Ajay Gandhi (1)
Anand Narayanaswamy (1)
Rupesh Kahane (1)
Chandranath Shetty (1)
Harpreet Singh (1)
Rizwan Ali (1)
Bechir Bejaoui (1)
Jasminder Singh (1)
Abhijit Patil (1)
Sachin Kalia (1)
Wdenton (1)
Abhishek Jain (1)
Scott Lysle (1)
Kailash Chandra Behera (1)
Kirtan Patel (1)
Kristofer Krause (1)
Abhimanyu K Vatsa (1)
Praveen Kumar (1)
Rajesh Bisht (1)
Dom Millar (1)
Biprojit Roy Choudhury (1)
Related resources for Compile
No resource found
How to Download Code from Your Azure Function App
9/27/2024 5:59:14 AM.
In this article, we will learn how to easily download code from your Azure Function App using built-in tools like the Azure Portal, App Service Editor, or source control integration.
Resolve "Member Name Cannot Be the Same as Enclosing Type" Error
9/18/2024 12:23:37 PM.
A colleague faced a build error in Visual Studio when naming a file Profile.aspx, which conflicted with the System.Web.Profile type. The error "member name cannot be the same as enclosing type&qu
AngularJS From Beginning: Directive - Part Four
9/10/2024 10:19:45 AM.
This article explores AngularJS custom directives, a key feature for enhancing templates with reusable components. It covers the creation of directives, directive naming conventions, and usage of attr
How To Enable C# 7.1 Version To My Projects
8/7/2024 10:45:55 AM.
To update your project to C# 7.1, you can use one of three methods: 1) Through Visual Studio Project Properties by selecting C# 7.1 in the Build menu. 2) By editing the csproj file and setting <Lan
Intermediate Code Optimizations in C#
7/29/2024 11:24:13 AM.
Intermediate code optimization in C# improves performance by refining Intermediate Language (IL) code. Techniques like inlining, loop optimizations, dead code elimination, and constant folding enhance
Optimizing LINQ Performance with Compiled Queries in .NET
7/22/2024 6:16:04 AM.
Compiled queries in LINQ (Language Integrated Query) are a powerful feature that can significantly improve the performance of your data access code, especially when dealing with repetitive queries.
Inner Workings of a Query Processor
7/18/2024 9:34:43 AM.
The query processor in a DBMS is pivotal, handling DML and DDL queries through stages like compilation, linking, and optimization. It ensures efficient execution, supporting operations like SELECT, IN
Overloading vs Overriding in Java
6/12/2024 5:17:59 AM.
Method overloading and overriding in Java, essential OOP concepts for code reusability and polymorphism. Overloading allows multiple methods with the same name but different parameters while overridin
Just-In-Time (JIT) Compiler in C#
6/5/2024 5:37:18 AM.
The JIT compiler in C# converts MSIL code to native code for execution, ensuring type safety. Types of JIT compilation include Pre-JIT, Econo-JIT, and Normal-JIT. Pre-JIT compiles all code at deployme
Typed DataSets in .NET
6/4/2024 9:50:30 AM.
ADO.NET provides typed DataSets for enhanced data access and type safety. Unlike untyped DataSets, typed DataSets leverage the database schema to generate strongly-typed classes.Data type mismatches a
JIT (Just-In-Time) Compiler
6/3/2024 10:09:04 AM.
.NET languages utilize CLR, enabling execution through JIT compiler, converting MSIL to CPU-specific native code during runtime. This JIT process ensures optimal performance, compiling IL to native co
Sealed Class in .NET C#: Syntax, Usage, and Example
5/30/2024 9:46:27 AM.
Users are prevented from inheriting a class by using sealed classes. The sealed keyword can be used to seal a class. The keyword informs the compiler that an extension of the class is not possible bec
Difference Between Object and Dynamic Keyword in C#
5/24/2024 9:36:56 AM.
In C#, both object and dynamic are used for handling data of any type, but they serve different purposes. The object keyword is used for static typing, requiring explicit type casting, while dynamic a
.NET Framework 4.6 New Features in Visual Studio 2015
5/17/2024 11:04:43 AM.
.NET Framework 4.6, integrated with Visual Studio 2015, introduces several new features and enhancements. Key improvements include the new RyuJIT compiler for better performance, updated async debuggi
Pre-Generated Views With a Code First Model Entity Framework 6.0
5/16/2024 5:39:46 AM.
Pre-generated views in Entity Framework 6.0 with a Code First model enhance performance by reducing the cost of view generation at runtime. By pre-compiling these views, you can significantly improve
đHow the Compiler Reads Your Code?
5/13/2024 8:12:24 AM.
C# compilation, from syntactic and semantic analysis to optimization techniques. Learn how the Common Language Runtime (CLR) executes compiled code and discover the role of the Just-In-Time (JIT) comp
Select Data Using Complied Query
4/18/2024 11:13:18 AM.
Learn how to optimize data retrieval in your application by utilizing compiled queries. This technique, often employed in Entity Framework and LINQ, enhances performance by pre-compiling queries, resu
Intoduction of Interceptors in .NET 8 and C# 12: How to use it?
4/18/2024 9:15:23 AM.
Interceptors are an experimental feature, available in preview mode with C# 12. An interceptor is a method that allows you to substitute a call to an interceptable method, with a call to itself at com
Enhance SQL Server Queries with OPTION(RECOMPILE) Hint
4/11/2024 6:56:49 AM.
This article provides an in-depth exploration of the OPTION(RECOMPILE) hint in SQL Server, offering developers and database administrators a thorough understanding of its functionality, practical appl
C# 8.0 ('Nullable Enable') To Avoid Null Reference Exception
4/10/2024 9:34:02 AM.
Explore the C# 8.0 nullable enable feature, identifying null reference exceptions in production code. Understand its implementation, compiler verification, and error detection, ensuring proper initial
Understanding the .NET Internal Compile Process
3/11/2024 11:16:32 AM.
In this article, we will learn about CLR, Jit Compiler, and how the .NET compilation process works. Understanding the .NET internal compile process involves dissecting how source code is translated in
Leveraging Compiled Queries for Enhanced Performance in LINQ
3/9/2024 9:17:22 AM.
Compiled queries in LINQ allow developers to pre-compile LINQ queries into executable delegates, reducing the overhead of query compilation and optimization. By caching the compiled query execution pl
Decoding Expression Trees in C#
3/8/2024 1:21:48 PM.
This article contains the details of how to Decoding Expression Trees in C#.
A Comprehensive Guide to Nullable Reference Types in C# 10
3/8/2024 2:55:22 AM.
Explore a comprehensive guide to leveraging nullable reference types in C# 10 by Ziggy Rafiq, providing detailed explanations, code examples, and best practices for improving code safety and robustnes
Entity Framework 6.0: NGen.exe and Startup Performance
3/7/2024 8:48:20 AM.
This content discusses native code generation, focusing on the process where the Just In Time (JIT) compiler converts MSIL code into native code for execution. It explains how the Native Image Generat
What is the Purpose of Vue.js Compiler?
2/27/2024 10:10:27 AM.
The Vue.js compiler transforms Vue.js templates into JavaScript render functions, parsing templates, generating an optimized Abstract Syntax Tree (AST), and producing efficient render functions for se
Polymorphism Concept in Object-Oriented Programming
2/12/2024 6:20:17 AM.
What do you mean by polymorphism? Polymorphism is explained with C# examples, Polymorphism, a concept extending beyond programming, is illustrated in everyday scenarios. Electrical outlets serve as an
VS 2022 Reveals System.Runtime.CompilerServices.Unsafe Vulnerability
11/15/2023 7:23:46 AM.
The recent version of Visual Studio 2022 revealed a vulnerability in ASP.NET WebForms.while updating Windows on Patch Tuesday and releasing the latest version of Visual Studio 17.8 and .NET 8 LTS, I u
New Features of Rust 1.73
11/2/2023 7:18:05 AM.
Rust 1.73 is a major release that includes a number of new features and improvements, such as impl Trait syntax, generic associated types, and improved borrow checker performance. These changes make R
Compiler Tools In C#
10/30/2023 6:57:34 AM.
The attached zip file contains the source code and documentation of Compiler tools in C#.
Source Generators in C#
10/27/2023 5:26:01 AM.
You explained the process step by step, starting with the definition of attributes and the implementation of the generator class, followed by the initialization and execution processes. Additionally,
Decompile An Assembly In C#
10/25/2023 9:50:50 AM.
In this article you will learn how to decompile an Assembly in C#.
How to Use Remix IDE to Create and Deploy Smart Contracts?
9/25/2023 6:06:07 AM.
Smart contracts are self-executing digital agreements on blockchain, automating transactions and ensuring trust without intermediaries.
A Deep Dive into Static Classes in C#
9/25/2023 4:26:42 AM.
This article, "Exploring Static Classes in C#," provides an in-depth exploration of the concept and practical applications of static classes in the C# programming language. It elucidates the
Constant VS ReadOnly In C#
9/22/2023 10:34:59 AM.
In this article, we will learn constant and readonly in c#. Here we will discuss the differences. In C#, both const and readonly are used for defining values that cannot be modified after they are ass
Introductions To C#
9/21/2023 7:00:18 AM.
C# is a new programming language developed by Microsoft. C# has power of C++ since it's derived from C and C++. It is simpler as VB.
Polymorphism in C#
9/14/2023 10:53:56 AM.
Polymorphism is a fundamental concept in object-oriented programming (OOP) languages like C#. It allows objects of different classes to be treated as objects of a common base class. Polymorphism provi
Dynamically load, compile, run, and interact with C# code
8/1/2023 6:05:01 AM.
We will look into how we can dynamically load C# code into our solution, compile this code, run it, and then interact with it to call methods
The Basics of Creating a Static Library Using Visual C++
5/26/2023 9:05:21 AM.
Explains the basics of creating a static library, with explanations, and how to use a static library.
.NET - 5 Free Decompilers
3/6/2023 6:02:38 AM.
We are giving an overview of 5 free .NET Decompilers.
.NET Vs COM (.NET In Deep)
2/27/2023 5:54:53 AM.
This article describes the details of the differences between .NET and COM technology. Also, you can find more information how.Net is working under the hood
Aspect Oriented Programming in C#.NET: Part I
8/25/2022 8:16:50 AM.
A lot has been written about AOP (Aspect Oriented Programming) on the Web, but none of the articles cover how to implement it practically in C#. This articles covers it practically using C#.
Creating MS Word Document using C#, XML and XSLT
3/29/2022 9:56:05 AM.
This simple program demostrate how to create well formatted MS Word documents using C#, XML and XSLT. Using XSLT to create Word documents requires the knowledge of RTF key words.
Could Not Find A Part Of The Path... bin\roslyn\csc.exe
2/16/2022 5:02:53 AM.
This article discusses roslyn issue.
SharpLab - Another Powerful Online Code Execution And Decompiler Tool
1/20/2022 2:03:25 PM.
SharpLab is another online tool that lets you write code, run it, inspect MSIL, and even decompile the MSIL code
Using The Roslyn C# Compiler
11/5/2021 5:54:27 AM.
In this article, you will learn how to use the Roslyn C# compiler.
Source Generator For INotifyPropertyChanged
9/20/2021 1:14:41 AM.
This article outlines steps for creating a Source Generator for the implementation of INotifyPropertyChanged using Rosyln Compiler API
Dynamic Code Compilation
2/3/2021 6:36:42 AM.
This article throws light on how a code can be built dynamically, compiled and run.
RyuJIT: The New 64-bit JIT Compiler For .NET 2015
1/6/2021 9:52:24 AM.
In this article you will learn about RyuJIT. RyuJIT is the new next-generation compiler for the whole .NET 2015 framework including .NET Core.
.NET Decompiling Tools: Part 1
1/3/2021 10:49:24 AM.
This article explains about decompiling tools for the .NET application and their features, how to use the tools to decompile assembly and assembly browser.
An Introduction To .NET Decompiler
11/24/2020 1:00:42 AM.
This article explains about .NET Decompiler. .NET decompiler is used to decompile the Libraries, Executables, and more.
Calculating Business Hours in Javascript
5/6/2020 9:42:59 PM.
In this article you will learn how to calculate business hours in JavaScript.
Learn About R.java File and Dalvik Virtual Machine in Android
3/31/2020 5:42:46 AM.
This article explains the R.java file and Dalvik virtual machine in Android.
.NET Compiler Platform (Roslyn) - Build Analyzer And Code Fixes
12/21/2019 7:11:55 AM.
Build your own analyzer and code fixes using the .NET compiler platform (Roslyn) with the latest Visual Studio 2019 and .NET framework.
Xamarin.Forms - Compiled Bindings
12/3/2019 10:10:54 AM.
Learn what compiled bindings in Xamarin.Forms are and how to use them to improve performance and avoid spelling errors.
Polymorphism in Java
9/12/2019 2:35:53 AM.
Polymorphism is discussed in this article. You'll see, how to achieve polymorphism in Java. Method overloading and overriding are discussed as well as.
Java Virtual Machine
8/9/2019 2:21:07 AM.
In this article you will learn about the Java Virtual Machine and its architecture.
Python Program Execution Process
7/16/2019 8:24:18 AM.
In this video, you will see the Python program execution what is the importance of Python Virtual Machine.
CodeDom Calculator - Evaluating C# Math Expressions Dynamically
5/13/2019 4:12:57 AM.
This article describes how to use CodeDom and Reflection to Create a Calculator that can evaluate simple and complex math expressions on the fly.
Compilation And Installation Of Kernel In Linux
4/30/2019 9:25:37 AM.
In this article, you will learn how to compile and install Linux Kernel on a machine.
Polymorphism in C#
2/6/2019 4:29:13 AM.
In this article I will explain you about method overloading i.e. compile time polymorphism.
Polymorphism in .NET
10/25/2018 1:59:53 AM.
In this article you will learn about Polymorphism in detail. What is Polymorphism? Static or Compile-time Polymorphism, Dynamic or Runtime Polymorphism, Virtual modifier, Virtual methods, Difference b
Runtime And Compiletime Constants In C#
5/8/2018 10:06:49 AM.
We know that C# supports const and readonly variables and generally uses them interchangeably, but we also should notice that they offer different behaviors. Always remember, const is compile time and
Diving Into OOP (Day 1): Polymorphism and Inheritance (Early Binding/Compile Time Polymorphism)
1/24/2017 11:30:17 PM.
This article will cover almost every OOP concept that a novice/beginner developer might seek and not only beginners but this article's purpose is to be helpful to experienced professionals who als
Compile Queries And Execute SQL Queries Using LINQ To SQL
1/8/2017 11:18:03 PM.
In this article, you will learn how to compile queries and execute SQL queries, using LINQ to SQL.
Visual Studio 2015 Tips And Tricks
5/23/2016 7:59:47 AM.
In this article you will learn about Visual Studio 2015 Tips and Tricks.
How To Compile & Test C# 7 Features
5/2/2016 12:03:56 PM.
In this article you will learn how to compile & test C# 7 features.
Compile/Build The UWP Project From The Command Line
3/27/2016 5:07:37 PM.
In this article you will learn how to compile/build the UWP project from command line.
Accessing COBOL Data Groups
12/22/2015 4:15:46 AM.
In this article you will learn how to access COBOL Data Groups in .NET.
Compile Time Error Checking In MVC View
12/2/2015 2:06:58 AM.
This article will help you how to check view at compile time in MVC View.
C# Faq 4 - How Do I Configure C# Compiler
11/29/2015 11:14:59 AM.
This article helps you to learn the initial steps required to compile a C# program from DOS command prompt.
Execution Of C Or C++ Program With Real Life Example
11/24/2015 6:26:24 AM.
In this article we will discuss the execution of C or C++ program with real life example.
Create Installer Using Inno Setup
9/2/2015 2:27:29 AM.
In this article you will learn how to install Inno Setup on Windows platform.
Compile Time Error Checking in MVC 5
4/28/2015 6:34:00 PM.
In this article we will see how to enable compile-time error checking in MVC views.
Roslyn Compiler in Visual Studio 2015
12/23/2014 11:16:07 PM.
In this article you will learn about the Roslyn Compiler in Visual Studio 2015.
Integrate XML Data Within your ASP Page Using XslCompiledTransform Class: Part I
9/15/2014 6:44:00 AM.
I will provide two techniques as a part of this two parts tutorial to demonstrate how to transform and integrate XML contents within ASP web page.
Feature, Function and Keyword Not Supported by Natively Compiled Store Procedure
3/11/2014 3:23:38 PM.
This article lists the many features, functions and keywords that are not available in a natively compiled Stored Procedure.
Natively Compiled Stored Procedures in SQL Server 2014
3/6/2014 12:51:36 PM.
This article describes Natively compiled stored procedures (T-SQL procedures compiled to native code and access memory optimized tables) and their use.
Compiled Queries in LINQ
2/11/2014 3:02:11 PM.
This article explains the use of compiled queries to improve performance when a query is fired many times.
Try and Catch Blocks in C#
2/5/2014 6:24:45 PM.
In this article you will learn about try and catch blocks in C#.
Precompiled Razor View Using RazorGenerator MVC and PreCompiledViewEngine in MVC 4
1/24/2014 7:29:49 PM.
A few days ago a question occured to me, can we share a single View across multiple projects? Yes in multiple projects. I thought about it and created a sample application to do that using RazorGenerator.Mvc.
Controlling Parameter Sniffing in SQL Server
11/11/2013 5:49:22 AM.
Parameter sniffing is helpful when there are several parameters in a Stored Procedure and also there is no favorite combination of parameters. If the value of parameters is not known at the time of compilation, there is nothing to be sniffed.
Debugging a Compiled Component
10/31/2013 1:21:51 AM.
After an assembly is compiled into a dll in a release mode, it is very difficult to gather information from it such as runtime performance, parameters values, etc.
Using Microsoft Roslyn
9/17/2013 11:46:45 AM.
Microsoft Roslyn is an API that exposes the C# compiler as a service or one can say now the entire compiler is exposed in a form of a library that can be included in your project or application.
Error Logging With Caller Info
7/12/2013 11:21:05 AM.
This article provides a brief introduction to the use of Caller Information as a means for creating an error logging utility class for your C# 5.0/.NET 4.5 applications.
.Net Compilers
2/26/2013 5:56:09 PM.
This article describes the two .Net compilers that exist in the .Net Framework.
Precompiled and Pre-generated Views in the Entity Framework
2/13/2013 3:32:52 PM.
While working with the Entity Framework, we can reduce the delay of the initial view by creating the view at compile time instead of runtime
Hello C#
10/20/2012 6:17:33 AM.
This short article is based on the classic âHello, Worldâ sample program familiarizes you with the language syntax and introduces the command line compiler.
Compile C# Program on Linux Operating System
10/13/2012 5:25:36 AM.
probably all programmers working in c# on windows platform but here i m presenting some thing that will give you a brief idea how to compile a c# program on LINUX platform in mono develop IDE.
Compiling The First F# Program Using Interactive Mode
10/5/2012 8:27:22 AM.
In this tutorial we will compile the first F# program using the interactive mode. There are lot of talks going on regarding F# , just thought how about compiling the first program using interactive F# mode.
A Beginner's Guide to Microsoft's shared Source CLI (Rotor)
9/30/2012 4:51:51 AM.
The Common Language Infrastructure (CLI) is the ECMA standard that describes the core technologies contained in .NET.
The "SplashScreen" parameter is not supported by the "MarkupCompilePass1" Error
9/30/2012 3:51:15 AM.
You get the "SplashScreen" parameter is not supported by the "MarkupCompilePass1" error message when create and run WPF applications in Visual Studio 2008 SP1.
Normal LINQ Query to Compiled LINQ Query to Auto-Compiled LINQ Queries in Entity Framework 5
9/26/2012 11:42:33 PM.
In this article I'll be talking about query performances (EF1 to EF5) so that you can better understand the Entity Framework 5 query performance improvements.
C# Command-Line Compiler Options
5/20/2012 7:16:41 AM.
In this article let's address each of the compiler options available in C#.
Understanding Uncompiled XAML to design dynamic UI in WPF
9/18/2011 1:34:36 PM.
This is a specialized approach that makes sense in certain scenarios where we need highly dynamic user interfaces. We load part of the user interface from a XAML file at runtime using the XamlReader class from the System.Windows.Markup namespace.
Delegate in .NET (C#): Digging / Acquaint - Make it Simple
7/18/2011 12:05:18 AM.
A delegate is an object or instance which can hold a reference of any function or which can bind a function.
6 Reasons to become an ASP.NET Programmer
3/2/2011 9:54:49 PM.
Here I give you 6 reasons to become an ASP.NET Programmer.
Understanding Static & Dynamic Polymorphism
3/2/2011 8:05:25 PM.
Understanding Static & Dynamic Polymorphism with Examples.
Building a web based C# compiler using ASP.NET and TDD
2/16/2011 11:35:12 PM.
This tutorial is an introduction to Test Driven Development (TDD) in Visual Studio 2010 (VS2010) with C# 4 and ASP.NET 4. This will focus on as using the tool and coding as much as possible and not a great deal of words so enjoy the ride.
Polymorphism in C#
6/3/2010 12:06:41 AM.
In this article you will learn how to use Polymorphism in C#.