A string representation of the version information.
()
| 75 | * A string representation of the version information. |
| 76 | **/ |
| 77 | public static String getString() |
| 78 | { |
| 79 | Native.IntPtr major = new Native.IntPtr(), minor = new Native.IntPtr(), build = new Native.IntPtr(), revision = new Native.IntPtr(); |
| 80 | Native.getVersion(major, minor, build, revision); |
| 81 | return Integer.toString(major.value) + "." + Integer.toString(minor.value) + "." |
| 82 | + Integer.toString(build.value) + "." + Integer.toString(revision.value); |
| 83 | } |
| 84 | } |
no test coverage detected