/// <summary> /// Creates a new NetworkTable object from an NtCore object /// </summary> /// <param name="ntCore">The NtCore object to use</param> /// <param name="path">The root path for this table</param> public IndependentNetworkTable(IndependentNtCore ntCore, string path) { if (path == "" || path[0] == PathSeperatorChar) { m_path = path; } else { m_path = PathSeperatorCharString + path; } m_ntCore = ntCore; m_pathWithSeperator = m_path + PathSeperatorCharString; }
/// <summary> /// Creates a new NetworkTable object from an NtCore object /// </summary> /// <param name="ntCore">The NtCore object to use</param> /// <param name="path">The root path for this table</param> public IndependentNetworkTable(IndependentNtCore ntCore, string path) { m_ntCore = ntCore; m_path = path; }
/// <summary> /// Creates a new <see cref="IndependentNetworkTable"/> object from a <see cref="IndependentNtCore"/> object /// </summary> /// <param name="ntCore">The <see cref="IndependentNtCore"/> object to use</param> public IndependentRemoteProcedureCall(IndependentNtCore ntCore) { m_ntCore = ntCore; }