Skip to content

Instantly share code, notes, and snippets.

@mizuneko
Created May 5, 2018 16:22
Show Gist options
  • Save mizuneko/d4c72ef22c72e4153cbe0e435f4e0b54 to your computer and use it in GitHub Desktop.
Save mizuneko/d4c72ef22c72e4153cbe0e435f4e0b54 to your computer and use it in GitHub Desktop.
[cmをinchに変換]ClosedXMLで余白などの指定をするときはインチ指定しなければならない。 #ClosedXML #ExtensionMethod
public static decimal ToInch(this decimal x)
{
return x * 0.39370;
}
public static decimal ToCm(this decimal x)
{
return x * 2.54
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment