big number library
enables calculation of big number
Source
static class Foo {
public static decimal lakh(this Decimal i) {
decimal lakh = i * 100000;
return lakh;
}
public static decimal crore(this Decimal i) {
decimal crore = i * 1000000;
return crore;
}
}
Example