Want to become a Vibe Coder? Join Vibe Coding Training here
x
C# Corner
Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Tags
No tag found
Content Filter
Articles
Videos
Blogs
Resources
News
Forums
Interviews
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Mohammad Elsheimy(5)
Ajay Yadav(2)
theLizard (1)
Mike Gold(1)
R. Seenivasaragavan Ramadurai(1)
Nilesh Jadav(1)
Srinivas Sampath(1)
Mayur Gujrathi(1)
Krishnan LN(1)
Sushmita Kumari(1)
Ashish Singhal(1)
ksasikumar (1)
Dinesh Ahuja(1)
Shripad Kulkarni(1)
Resources
No resource found
Serialization vs. Marshaling
May 06, 2010.
Are you somewhat confused between Serialization and Marshaling? This writing would break this confusion up, it would give you a basic understanding of the process of Serialization and the process of Marshaling, and how you can get the most out of each.
Marshaling with C# - Chapter 3: Marshaling Compound Types
Mar 14, 2010.
This detailed chapter teaches you how to marshal compound types such as structures and unions in C# and .NET.
Marshaling with C# - Chapter 2: Marshaling Simple Types
Mar 11, 2010.
This chapter discusses the nitty-gritty part of marshaling process. It is the base for the rest of discussion about marshaling. It is about marshaling simple data types.
Marshaling with C# - Chapter 1: Introducing Marshaling
Mar 11, 2010.
Marshaling is the process of creating a bridge between managed code and unmanaged code;
Marshal Operations Between Child Forms in an MDI Application
Mar 04, 2010.
This article is designed to give you a simple understanding of how to marshal operations between child forms in an MDI application.
Marshaling Unions
Feb 21, 2010.
In this article you will learn how to marshal C/C++ Unions in C#.
Moving C Structures into .NET with Custom Marshaling
Dec 17, 2004.
Microsoft provides several attributes for marshaling C to C#. In our example we will take the case where we have hundreds of structures and only a few API calls, so we only need to generate the marshaled code for the structures.
XML Web Services Type Marshaling
Feb 20, 2002.
This article illustrates that various data types can be passed to and returned from Web Service methods.
Getting Started With Remote Procedure Call
Mar 09, 2017.
Getting Started With Remote Procedure Call. In Remote Procedure Call(RPC), the caller and sender process are executed on different machines, they can communicate with the help of the transport and network layers of an OSI model.
COM in .NET
Nov 05, 2014.
COM (Component Object Model) in .NET facilitates interoperability between .NET and COM objects. Using COM Callable Wrappers (CCW) and Runtime Callable Wrappers (RCW), .NET code can access COM components, enabling seamless integration of legacy COM components with .NET applications.
Remoting Technology: Distributed Computing
Nov 04, 2014.
Remoting technology facilitates distributed computing, enabling seamless communication between processes or applications across a network. It employs protocols, marshaling, and proxies to facilitate remote method invocation, enhancing interoperability and scalability in client-server architectures.
Web Service using SOAP Toolkit in VB.NET
Nov 09, 2012.
The world of web services has taken applications by storm. From an era where applications were tightly bound to one another, we have reached a time wherein applications are delivered as a service.
Prerequirement of REMOTING
Apr 07, 2011.
It is Microsoft technology for developing distributed applications, replacing traditional DCOM. All distributed technology needs consuming libraries present on remote machines.
Writing Dataset to Excel in ASP.NET
Mar 01, 2006.
This article is helpful for those who would like to write dataset contents to a excel file and try to display it in the browser.
How to get Security UserId after windows Starts a Session
Feb 23, 2006.
This article explains how to get the security userid after a succesful login when windows starts the session for authenticated user.
Important Aspects about Components
Jan 12, 2006.
In this article, I wil discuss some properties and key definitions about component programming.
.NET Remoting
Sep 02, 2004.
.NET Remoting facilitates communication between .NET objects in different application domains or processes across a network. It provides a versatile mechanism for remote procedure calls, supporting various protocols like TCP/IP and HTTP, enabling distributed computing in the .NET framework.
Platform Invocation Services in .NET Framework
Oct 25, 2002.
This article will cover the details of Platform Invocation Services provided in .Net Framework. Platform Invoke Services acts as a bridge between the managed and unmanaged code. This service enables managed code to call unmanaged functions which are being exposed by any dynamic link libraries (DLL’s) such as Win32 API’s or any custom DLLs.
.NET Remoting: The Simple Approach
Mar 26, 2002.
.NET Remoting provides a powerful and high performance way of working with remote objects. Architecturally, .NET Remote objects are a perfect fit for accessing resources across the network without the overhead posed by SOAP based Web services.