Added ordinal comparison to string index search.
This commit is contained in:
parent
760e68ed4e
commit
71c900630f
1 changed files with 1 additions and 1 deletions
|
@ -334,7 +334,7 @@ namespace OpenTK.Rewrite
|
||||||
// something like "type namespace.class::method(type arg)"
|
// something like "type namespace.class::method(type arg)"
|
||||||
var module = il.Body.Method.FullName;
|
var module = il.Body.Method.FullName;
|
||||||
module = module.Substring(module.IndexOf(' ') + 1);
|
module = module.Substring(module.IndexOf(' ') + 1);
|
||||||
module = module.Substring(0, module.IndexOf("::"));
|
module = module.Substring(0, module.IndexOf("::", StringComparison.Ordinal));
|
||||||
module = module.Substring(0, module.LastIndexOf('.'));
|
module = module.Substring(0, module.LastIndexOf('.'));
|
||||||
|
|
||||||
// Only works for Graphics modules due to hardcoded use of
|
// Only works for Graphics modules due to hardcoded use of
|
||||||
|
|
Loading…
Reference in a new issue