fromStr() public static method

public static fromStr ( string s ) : Uri
s string
return Uri
Ejemplo n.º 1
0
 public override FTable read(FStore.Input input)
 {
     if (input == null)
     {
         m_size = 0; return(this);
     }
     m_size  = input.u2();
     m_table = new object[m_size];
     for (int i = 0; i < m_size; i++)
     {
         m_table[i] = Uri.fromStr(input.utf());
     }
     return(this);
 }