Created
December 3, 2015 20:06
-
-
Save samueleresca/78a1aabb33fc017a0465 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Class Telefilm | |
[Serializable] | |
public class Telefilm | |
{ | |
public int TelefilmId { get; set; } | |
public string TelefilmName { get; set; } | |
public DateTime CreateDate { get; set; } | |
public bool ShouldSerializeCreateDate() { | |
return (!TelefilmName.Equals("Californication")); //Bool EXP | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment