friendsterTalk - Friendster Forum

friendsterTalk - Friendster Forum

Welcome guest! Please Login or Register.

#1  2008-11-11 17:51:23

creamownedz
 active server protocol
creamownedz's display avatar
» FriendsterTalker
PsychoCoder
Class-S
Location: Ftalk & MCTF
Registered: 2008-03-22
Posts: 115
Last visit: Today
Reputation: 7

Meters to anything [C#]

Convert meters to any unit


Code:

public enum DestUnit
                {
                    feet,
                    kilometer,
                    centimeter,
                    millimeter,
                    inch,
                    yard,
                    mile
                }                
                public static double MeterTo(double Meters, DestUnit ToWhat)
                {
                    //the number of feet in a meter
                    const double FeetPerMeter = 3.2808398950131233595800524934383;
                    switch (ToWhat)
                    {
                        case DestUnit.feet:
                            return Meters * FeetPerMeter;
                        case DestUnit.inch:
                            return (Meters * FeetPerMeter) * 12;
                        case DestUnit.yard:
                            return (Meters * FeetPerMeter) / 3;
                        case DestUnit.mile:
                            return (Meters * FeetPerMeter) / 5280;
                            //The metric units are easy to convert to
                        case DestUnit.centimeter:
                            return Meters * 100;
                        case DestUnit.millimeter:
                            return Meters * 1000;
                        case DestUnit.kilometer:
                            return Meters / 1000;
                        default:
                            //so all code paths return something
                            return 0;
                    }
                }

...Giving of reputation are highly appreciating for me...
Computers don't make errors what they do they do on purpose
...computer is my expertise...
....an addicted coder....
....don't ripp all my tutorials....

Search Friendstertalk

Board footer

FriendsterTalk is not affiliated with Friendster.com
Copyright © 2002–2009 PunBB

[ 11 queries - 1.224 second ]

Pay Per Click Ads by pay per click advertising by Kontera

FriendsterTalk.com x

Welcome to FriendsterTalk! You'll need to login in order to fully use all the features and view all the sections of this site.

Please register if you're not yet a member. =)