Pinned Loading
-
read and parse + update RevitINI fil...
read and parse + update RevitINI files from custom actions 1public static void ReadWriteRevitIniPaths() {
2var iniLocations = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "Autodesk", "Revit");
3foreach (var dir in Directory.GetDirectories(iniLocations)) {
4if (dir.Contains("Addins")) { continue; }
5foreach (var file in Directory.GetFiles(dir)) {
-
retrive int[] of all grays code comb...
retrive int[] of all grays code combinations 1private IEnumerable<int[]> getGrays(int n) {
2//if n is > 24 memory fails
3if (n <= 0 || n > 24) { return null; }
4var ar = new List<string> { "0", "1" };
5for (var i = 2; i < 1 << n; i = i << 1) {
-
-
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.