Skip to content

Instantly share code, notes, and snippets.

@SiunCyclone
Created August 5, 2020 04:27
Show Gist options
  • Save SiunCyclone/e811cbc6e0f570248f46d569c6bc611c to your computer and use it in GitHub Desktop.
Save SiunCyclone/e811cbc6e0f570248f46d569c6bc611c to your computer and use it in GitHub Desktop.
// double変数20個の構造体
public struct BigVec {
public BigVec(int num) {
a = num;
b = num;
c = num;
// ...
}
public double a;
public double b;
public double c;
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment