Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitd0962f9

Browse files
committed
Code cleanup
Assembly versioning
1 parent413fa6d commitd0962f9

File tree

3 files changed

+2
-17
lines changed

3 files changed

+2
-17
lines changed

‎ObjectReader.cs‎

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -383,11 +383,6 @@ private object ReadObject()
383383
{
384384
value=ReadChar();
385385
}
386-
//NOTE(jrg): DateTime is going to handled by ISerializable
387-
//else if (type == typeof(DateTime))
388-
//{
389-
//value = ReadDateTime();
390-
//}
391386
elseif(type==typeof(Decimal))
392387
{
393388
value=ReadDecimal();

‎ObjectWriter.cs‎

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -209,11 +209,6 @@ private void WriteChar(Char value)
209209
stream.Write(bytes,0,2);
210210
}
211211

212-
privatevoidWriteDateTime(DateTimevalue)
213-
{
214-
WriteInt64(value.Ticks);
215-
}
216-
217212
privatevoidWriteDecimal(Decimalvalue)
218213
{
219214
varbits=Decimal.GetBits(value);
@@ -421,11 +416,6 @@ private void WriteObject(object value)
421416
WriteChar((Char)value);
422417
return;
423418
}
424-
elseif(type==typeof(DateTime))
425-
{
426-
WriteDateTime((DateTime)value);
427-
return;
428-
}
429419
elseif(type==typeof(Decimal))
430420
{
431421
WriteDecimal((Decimal)value);

‎Properties/AssemblyInfo.cs‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly:AssemblyVersion("1.1.2.0")]
36-
[assembly:AssemblyFileVersion("1.1.2.0")]
35+
[assembly:AssemblyVersion("1.1.3.0")]
36+
[assembly:AssemblyFileVersion("1.1.3.0")]

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp