Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

c# in equivalent

using System;
using System.Linq;

static class SqlStyleExtensions
{
    public static bool In(this string me, params string[] set)
    {
       return set.Contains(me);
    }
}
 
PREVIOUS NEXT
Tagged: #equivalent
ADD COMMENT
Topic
Name
3+1 =