Adf.Business.ValueObject.FileName.operator C# (CSharp) Method

operator() public static method

Returns the inequality of two FileName objects.
public static operator ( ) : bool
return bool
        public static bool operator !=(FileName i, FileName j)
        {
            return (i.value != j.value);
        }