Axiom.Graphics.Technique.GPUVendorRule.operator C# (CSharp) Метод

operator() публичный статический Метод

public static operator ( ) : bool
Результат bool
            public static bool operator ==( GPUVendorRule a, GPUVendorRule b )
            {
                if ( Object.ReferenceEquals( a, b ) )
                    return true;

                return ( a.Vendor == b.Vendor ) && ( a.Include == b.Include );
            }