Github user spmallette commented on a diff in the pull request:
https://github.com/apache/tinkerpop/pull/817#discussion_r175440928
--- Diff: gremlin-dotnet/glv/P.template ---
@@ -94,8 +94,8 @@ namespace Gremlin.Net.Process.Traversal
<% } %><% pmethods.findAll{ it in ["within", "without"] }.each { method ->
%>
public static P <%= toCSharpMethodName.call(method) %>(params
object[] args)
{
- if (args.Length == 1 && args[0] is ICollection<object>)
- return new P("<%= method %>",
ToGenericArray((ICollection<object>) args[0]));
+ if (args.Length == 1 && args[0] is ICollection<object>
collection)
+ return new P("without", ToGenericArray(collection));
--- End diff --
hahaha....oops - copy/paste. thanks-that was dumb on my part
---