Пример #1
0
 public string this[int index]
 {
     get
     {
         string result;
         int    lineLength = _instance.LineLength(index);
         if (lineLength <= 0)
         {
             result = string.Empty;
         }
         else
         {
             _instance.SendMessageDirect((uint)_getter, new IntPtr(index), out result, _instance.LineLength(index));
         }
         return(result);
     }
 }