# NFly.GenericConverter **Repository Path**: wowin/NFly.GenericConverter ## Basic Information - **Project Name**: NFly.GenericConverter - **Description**: C#: convert object from one type to another - **Primary Language**: C# - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2015-06-29 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README #NFly.GenericConverter ##Intro: convert type from one to another ##custom converter user registered converter has the highest priority. you can register a custom converter by: Converter.Register(typeof(YourType), yourConverter) ##how to use: var time = DateTime.Now; var text = Converter.Convert(time);