You can set it like this (note the M
suffix for the decimal
type):
decimal PlancksConstant = 6.626E-34M;
But it will be effectively 0 , because you cannot imagine a number with a value less than 1E-28 as decimal
.
So you need to use double
instead and just define this:
double PlancksConstant = 6.626E-34;
source share