Click here to Skip to main content
15,886,798 members
Home / Discussions / C#
   

C#

 
AnswerRe: Drag & Drop how to in Windows Application Pin
Dave Kreskowiak6-Dec-17 6:52
mveDave Kreskowiak6-Dec-17 6:52 
GeneralRe: Drag & Drop how to in Windows Application Pin
GauravGoyal_56-Dec-17 7:20
GauravGoyal_56-Dec-17 7:20 
GeneralRe: Drag & Drop how to in Windows Application Pin
Dave Kreskowiak6-Dec-17 7:22
mveDave Kreskowiak6-Dec-17 7:22 
AnswerRe: Drag & Drop how to in Windows Application Pin
MAIsw6-Dec-17 23:40
MAIsw6-Dec-17 23:40 
QuestionProblem with sending DateTime object to PHP webservice from c# Pin
Snyezana Miletich5-Dec-17 21:34
Snyezana Miletich5-Dec-17 21:34 
AnswerRe: Problem with sending DateTime object to PHP webservice from c# Pin
Jochen Arndt5-Dec-17 21:46
professionalJochen Arndt5-Dec-17 21:46 
GeneralRe: Problem with sending DateTime object to PHP webservice from c# Pin
Snyezana Miletich5-Dec-17 23:12
Snyezana Miletich5-Dec-17 23:12 
GeneralRe: Problem with sending DateTime object to PHP webservice from c# Pin
Jochen Arndt5-Dec-17 23:48
professionalJochen Arndt5-Dec-17 23:48 
A DateTime is a binary object containing a time stamp. It does not know anything about a specific date format. Therefore, it is recommended to use such whenever possible.

If you parse a datetime string without error, you have a valid binary representation.

So
Quote:
To convert it back to DateTime but it contains "T" again after converting:
makes no sense. After converting a string representation to a DateTime it does not contain a 'T' because it is a binary value.

If you have an output of the form "yyyy-MM-ddTHH:mm:ss" somewhere, the DateTime binary value has been converted to a string again. If you don't want the 'T', you have to replace it with a space in the format string used to convert the value.

Similar applies to floating point values for example. You have a binary value. That can be converted to a string using different precisions (digits after the decimal point), scientific format (with exponent), and different (locale dependant) decimal points. These strings might be different but the binary value is still the same.

So don't care about the string representation if you can pass such values in a binary format. If you have to pass them as strings, you have to ensure that the receiver (parse string) uses the same format as used by the the sender to create the string.
QuestionAdding dynamically a custom user control into a dockPanel in xaml file Pin
Hervend3-Dec-17 23:10
Hervend3-Dec-17 23:10 
AnswerRe: Adding dynamically a custom user control into a dockPanel in xaml file Pin
Kenneth Haugland4-Dec-17 0:36
mvaKenneth Haugland4-Dec-17 0:36 
AnswerRe: Adding dynamically a custom user control into a dockPanel in xaml file Pin
#realJSOP4-Dec-17 3:11
mve#realJSOP4-Dec-17 3:11 
AnswerRe: Adding dynamically a custom user control into a dockPanel in xaml file Pin
Mycroft Holmes4-Dec-17 13:21
professionalMycroft Holmes4-Dec-17 13:21 
AnswerRe: Adding dynamically a custom user control into a dockPanel in xaml file Pin
Gerry Schmitz4-Dec-17 18:59
mveGerry Schmitz4-Dec-17 18:59 
QuestionAlright. How the heck to they do it? Pin
#realJSOP3-Dec-17 6:37
mve#realJSOP3-Dec-17 6:37 
AnswerRe: Alright. How the heck to they do it? Pin
Luc Pattyn3-Dec-17 11:33
sitebuilderLuc Pattyn3-Dec-17 11:33 
GeneralRe: Alright. How the heck to they do it? Pin
Nathan Minier4-Dec-17 1:18
professionalNathan Minier4-Dec-17 1:18 
AnswerRe: Alright. How the heck to they do it? Pin
Kenneth Haugland4-Dec-17 0:30
mvaKenneth Haugland4-Dec-17 0:30 
GeneralRe: Alright. How the heck to they do it? Pin
#realJSOP4-Dec-17 3:02
mve#realJSOP4-Dec-17 3:02 
GeneralRe: Alright. How the heck to they do it? Pin
Kenneth Haugland4-Dec-17 3:12
mvaKenneth Haugland4-Dec-17 3:12 
GeneralRe: Alright. How the heck to they do it? Pin
#realJSOP4-Dec-17 3:15
mve#realJSOP4-Dec-17 3:15 
GeneralRe: Alright. How the heck to they do it? Pin
Richard Deeming4-Dec-17 4:32
mveRichard Deeming4-Dec-17 4:32 
GeneralRe: Alright. How the heck to they do it? Pin
#realJSOP4-Dec-17 7:03
mve#realJSOP4-Dec-17 7:03 
AnswerRe: Alright. How the heck to they do it? Pin
Nathan Minier4-Dec-17 1:21
professionalNathan Minier4-Dec-17 1:21 
AnswerRe: Alright. How the heck to they do it? Pin
Richard Deeming4-Dec-17 2:03
mveRichard Deeming4-Dec-17 2:03 
GeneralRe: Alright. How the heck to they do it? Pin
#realJSOP4-Dec-17 3:03
mve#realJSOP4-Dec-17 3:03 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.