Skip to content

Commit

Permalink
C47629: Duplicated period on localized version due to backslash causi…
Browse files Browse the repository at this point in the history
…ng transformer failure (dotnet#2175)

@ronpet, 
The backslash generates localization tool fail. I've just removed it to avoid this problem at the moment of translating the content. 
Ccan you help to merge this, please?
Many thanks in advance.
  • Loading branch information
carolinacmoravia authored and guardrex committed May 16, 2017
1 parent 821895f commit af9a3d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/standard/native-interop.md
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ public static void Main(string[] args) {

```

The example above shows off a simple example of calling into `GetSystemTime()` function. The interesting bit is on line 4\. The attribute specifies that the fields of the class should be mapped sequentially to the struct on the other (unmanaged) side. This means that the naming of the fields is not important, only their order is important, as it needs to correspond to the unmanaged struct, shown below:
The example above shows off a simple example of calling into `GetSystemTime()` function. The interesting bit is on line 4. The attribute specifies that the fields of the class should be mapped sequentially to the struct on the other (unmanaged) side. This means that the naming of the fields is not important, only their order is important, as it needs to correspond to the unmanaged struct, shown below:

```c
typedef struct _SYSTEMTIME {
Expand Down

0 comments on commit af9a3d6

Please sign in to comment.