How to retrieve latitude and longitude of a draggable pin via Google Maps API

Latitude and longitude are spherical coordinates used to locate a point on the earth. Many maps do not need to take the curvature of the earth into account. Latitude: Latitude is the Y coordinate and characterizes north-south worldwide position estimated from the equator. Lines of steady latitude are called matches since they characterize a progression of rings corresponding to the […]

how to convert number to text currency in C#

Somnetimes we will get a requirement like converting a number into words. such as: 568.25 = Five Hundred Sixty Eight and Paisa Twenty Five Only. Create a converter class with that code: Example:568.25 = Five Hundred Sixty Eight Only.568.25 = Five Hundred Sixty Eight and Paisa Twenty Five Only. [code lang=”js”]public class converter{static Tuple<int, string>[] powers ={new Tuple<int, string>(0, “”),new Tuple<int, string>(3, […]

How can i protect my email address

In today’s digital age, email has become an essential tool for communication. Whether you use it for personal or professional purposes, your email address contains a wealth of sensitive information that you need to protect. From personal messages to financial statements, your email inbox holds a treasure trove of information that could be used against you if it falls into […]