Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/DynamoDS/Dynamo
Browse files Browse the repository at this point in the history
  • Loading branch information
zeusongit committed Nov 12, 2024
2 parents bc7ab84 + 8cc5818 commit f8f337c
Show file tree
Hide file tree
Showing 93 changed files with 4,077 additions and 448 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ runtimeGeneratedExtension/
obj/
int/
packages/
bin/

#find -type d -name bin -exec git rm -r {} \;

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
## In Depth
This node will convert an oject to a string. The second input `format specifier` controls how numeric inputs are converted to their string representations.
This `format specifier` inputs should be one of the c# standard format numeric specifiers.

format specifiers should be in the form:
`<specifier><precision>` for example F1

Some commonly used format specifiers are:
```
G : general formatting G 1000.0 -> "1000"
F : fixed point notation F4 1000.0 -> "1000.0000"
N : number N2 1000 -> "1,000.00"
```

The default for this node is `G`, which will output a compact, but variable representation.

[see the microsoft documentation for more detailed information.](https://learn.microsoft.com/en-us/dotnet/standard/base-types/standard-numeric-format-strings#standard-format-specifiers)
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
## In Depth
This node will convert an oject to a string. The second input `format specifier` controls how numeric inputs are converted to their string representations.
This `format specifier` inputs should be one of the c# standard format numeric specifiers.

format specifiers should be in the form:
`<specifier><precision>` for example F1

Some commonly used format specifiers are:
```
G : general formatting G 1000.0 -> "1000"
F : fixed point notation F4 1000.0 -> "1000.0000"
N : number N2 1000 -> "1,000.00"
```

The default for this node is `G`, which will output a compact, but variable representation.

[see the microsoft documentation for more detailed information.](https://learn.microsoft.com/en-us/dotnet/standard/base-types/standard-numeric-format-strings#standard-format-specifiers)
Loading

0 comments on commit f8f337c

Please sign in to comment.