-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (59 loc) · 3.75 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<title>clrinterop</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/primer.css">
<link rel="stylesheet" href="css/site.css">
</head>
<body class="bg-gray-dark text-gray-light">
<div class="container-lg py-6">
<h1 class="text-blue"><a href="https://github.com/clrinterop?type=source" title="clrinterop source code on GitHub">clrinterop</a></h1>
<p>Provides tools and samples that enhance your interop development experience.</p>
<p class="text-mono text-blue"><a href="https://github.com/clrinterop?type=source" title="clrinterop source code on GitHub">open source</a></p>
<div class="col-8 pt-6">
<h2 class="text-purple">P/Invoke Interop Assistant</h2>
<p>In marshalling there are many attributes and rules for dealing with types.
Understanding all of these can be a bit daunting. To improve the development experience,
the P/Invoke Interop Assistant was created. It is a tool that conveniently converts
C/C++ to managed P/Invoke signatures or verse visa. It even comes with a database
of Win32 functions, data types, and constants, so the common task of adding
a Win32 P/Invoke to your C# or Visual Basic source file is made very easy.
There is a great marshalling article on MSDN Magazine website which highlights the tool.
We hope you enjoy it!</p>
</div>
<div class="col-8">
<h2 class="text-purple">Type Library Importer in Managed Code</h2>
<p>Tlbimp is a command line tool which creates a managed, interop assembly from a COM type library.
This is essentially the same tool that was released with versions of the .NET Framework SDK,
but written entirely in managed code. Providing a managed version will enable developers
to explore and extend its features. We also plan on adding new features to make it more
customizable. Stay tuned for more enhancements!</p>
</div>
<div class="col-8">
<h2 class="text-purple">IL Stub Diagnostic Tool</h2>
<p>IL stubs are dynamically generated on the fly by the CLR and handle the marshalling and
invocation of the target method. The IL Stub Diagnostic tool was created to ease the interop
debugging experience. It is a real-time monitor which shows the details of every IL stub generated
by the CLR in a given process. For each stub, the tool currently displays its IL code as well
as the signature of the managed/native methods. This release is supported on Windows Vista+.
Further, we plan on releasing enhancements of the tool during the Visual Studio 2010 Beta
period. Stay tuned!!</p>
</div>
<div class="col-8">
<h2 class="text-purple">CustomQueryInterface Sample - IDispatch and Aggregation</h2>
<p>ICustomQueryInterface is a new interface that will be released in CLR v4. This feature will
enable developers to provide their own managed implementation of custom and standard COM
interfaces (except IUnknown). In this sample, we will show you how to construct a managed
COM aggregation system in the context of a managed implementation of IDispatch with ICustomQueryInterface.</p>
</div>
<div class="col-8">
<h2 class="text-purple">CustomQueryInterface Sample - IMarshal on WCF</h2>
<p>ICustomQueryInterface is a new interface that will be released in CLR v4 and we already released
a sample above to demo managed aggregation and customized IDispatch. To further demo the power
of CustomQueryInterface and the ability to use the .Net technology (WCF) within COM world,
this sample targets the customization of IMarshal interface by using WCF.</p>
</div>
</div>
</body>
</html>