Ejemplo n.º 1
0
 internal static ADLString toNative(string s)
 {
     ADLString result = new ADLString();
     if (s != null)
     {
         result.body = s;
         result.length = (uint)s.Length;
     }
     return result;
 }
Ejemplo n.º 2
0
        internal static ADLString toNative(string s)
        {
            ADLString result = new ADLString();

            if (s != null)
            {
                result.body   = s;
                result.length = (uint)s.Length;
            }
            return(result);
        }
Ejemplo n.º 3
0
 internal static string fromNative(ADLString cdos)
 {
     return cdos.body;
 }
Ejemplo n.º 4
0
 internal static string fromNative(ADLString cdos)
 {
     return(cdos.body);
 }