Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ruanhaishen
NLua
Commits
7c74d9e1
Commit
7c74d9e1
authored
Oct 29, 2014
by
Vinicius Jarina
Browse files
Fixed WinRT build.
parent
3618add1
Changes
1
Show whitespace changes
Inline
Side-by-side
Core/NLua/Method/LuaMethodWrapper.cs
View file @
7c74d9e1
...
...
@@ -104,7 +104,11 @@ namespace NLua.Method
return
type
.
GetMethods
(
methodName
,
bindingType
);
var
methods
=
type
.
GetMethods
(
methodName
,
bindingType
);
#if NETFX_CORE
var
baseMethods
=
GetMethodsRecursively
(
type
.
GetTypeInfo
().
BaseType
,
methodName
,
bindingType
);
#else
var
baseMethods
=
GetMethodsRecursively
(
type
.
BaseType
,
methodName
,
bindingType
);
#endif
return
methods
.
Concat
(
baseMethods
).
ToArray
();
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment