C# Custom data type!
Posted
by Betamoo
on Stack Overflow
See other posts from Stack Overflow
or by Betamoo
Published on 2010-05-12T14:22:15Z
Indexed on
2010/05/12
14:24 UTC
Read the original article
Hit count: 365
After I decided at last to implement my Int128 in C#, I thought it would be nice to make it look like other dotNet data types.. But I could not implement the following feature:
- suffix initialization: such as 13L and 0.2D
Can I make my own suffix in C#?
And if I can not.. how can I initialize it?
i.e
Int128 a= ??
© Stack Overflow or respective owner