13 Şubat 2018 Salı

Serializable Anotasyonu

Örnek
Şöyle yaparız.
[Serializable]
public Class Event
{
  public String Name {get; set;}
  public DateTime EventTime { get; set;}
  public List<Image> EventImages { get; set; }
    ...
}

[Serializable]
public Class Image
{
  public DateTime ImageTime { get; set;}
  public byte[] pData {get; set;}
    ...
}
Örnek
Şöyle yaparız
[Serializable]
public class Foo
{
  public string f1 { get; set; }
  public bool f2 { get; set; }
  public DataTable f3 { get; set; }
}

Hiç yorum yok:

Yorum Gönder