Equivalent to Win32 ________ in .NET.

I recently needed to find the .NET equivalent for ShellExecute, and I was happy to be able to quickly find the answer in StackOverflow. But, of course, there should be a document or a list that would give me this answer a little faster.

Back when I switched from ANSI programming to UNICODE, Microsoft had this handy routine mapping page:

http://msdn.microsoft.com/en-us/library/Aa272889

I put part of it into a text file, and when I needed to know, say, the Unicode equivalent of strlen, I would just grep the file for strlen, and I would get:

C:\> grep strlen textfuncs.txt

strlen    _tcsclen
strlen    _tsclen

Does anyone have or know a list like this for Win32 -> .NET?

+3
source share
6 answers

Aren't you looking for something like this:

Microsoft Win32 Microsoft.NET Framework

+2

, Win32 .NET.

.NET Framework API Win32, -. , , . , API , ..

, "" API.

+6

.net API . - win32 .net. Google .

+3

1-1, , Win32 .NET: http://www.pinvoke.net.

Win32, .

+1

.NET Win32:

PInvoke.net: interop wiki

" API", , - Win32 API API. API Win32 .

The exact equivalent query will resemble the question of what is the managed equivalent of assembly language instructions when the managed language / API does not provide this level of detail.

+1
source

I just stumbled upon this page, which does a pretty good job of ensuring what I was looking for:

C # for MFC Programmers - Quick Equivalents Card

0
source

Source: https://habr.com/ru/post/1769447/


All Articles