>DansTonCode();

Tous les codes sources "Ca ne marchera pas"page 2

C#
  6 June, 2016 à 01:30
#271
public int VoteCount
{
 get { return this.VoteCount; }
 set { this.VoteCount= value;}
}

// A property that sets and gets itself. Awesome infinite recursion.
C#
  9 May, 2016 à 01:30
#250
private string HexToInt(string Value)
{
    string str;
    try
    {
        str = Value;
    }
    catch (Exception exception)
    {
        Trace.Log("Error with HexToInt :");
        Trace.LogException(exception);
        throw;
    }
    return str;
}