Skip to content

Commit 6c50a89

Browse files
authored
Fix GetnanoClrTypeName (#20)
***NO_CI***
1 parent 234a8cc commit 6c50a89

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/MetadataProcessor.Core/Utility/NativeMethodsCrc.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//
1+
//
22
// Copyright (c) 2019 The nanoFramework project contributors
33
// Original work from Oleg Rakhmatulin.
44
// See LICENSE file in the project root for full license information.
@@ -131,7 +131,7 @@ internal static string GetnanoClrTypeName(TypeReference parameterType)
131131
else
132132
{
133133
// type is not primitive, get full qualified type name
134-
return parameterType.FullName;
134+
return parameterType.FullName.Replace(".", String.Empty);
135135
}
136136
}
137137

0 commit comments

Comments
 (0)