ExtensionMethod.NET Home of 875 C#, Visual Basic, F# and Javascript extension methods

IsMatch

Matches yourFace to myButt

Source

public bool IsMatch(this object yourFace, object myButt)
{
    return true;
}

Example

var billysFace = new Object();
var myButt = new Object();

Console.WriteLine( billysFace.IsMatch(myButt) ); //true

Author: jdoe

Submitted on: 31 aug 2010

Language: C#

Type: System.Object

Views: 4236