- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
class TReadWrapper<TItemType>
{
public static object item(string ItemString)
{
if (typeof(TItemType) == typeof(double))
return Convert.ToDouble(ItemString);
TDbg.Assert(false);
return null;
}
};
class TRead<TItemType>
{
public static TItemType item(StreamReader BinaryStream)
{
string ItemString = BinaryStream.ReadLine();
if (ItemString == null)
throw new Exception();
return (TItemType)TReadWrapper<TItemType>.item(ItemString);
}
};
class TFileToList<TListItem> : List<TListItem>
{
public TFileToList(string FileName)
{
if(typeof(TListItem)==typeof(char))
{
StreamReader file = new StreamReader(FileName, Encoding.Unicode);
string FileData = file.ReadToEnd();
foreach (char item in FileData)
this.Add((TListItem)(object)item);
file.Close();
return;
};
StreamReader fileSource = new StreamReader(FileName, Encoding.Unicode);
try
{
for (;;)
this.Add(TRead<TListItem>.item(fileSource));
}
catch
{
};
fileSource.Close();
}
}
class TListToFile<TListItem>
{
static public void rewrite(string NameOfDestinationFile, List<TListItem> Source)
{
if(typeof(TListItem)==typeof(char))
{
StreamWriter file = new StreamWriter(NameOfDestinationFile, false, Encoding.Unicode);
foreach (TListItem item in Source)
file.Write(item);
file.Flush();
file.Close();
return;
};
StreamWriter fileDestination = new StreamWriter(NameOfDestinationFile, false, Encoding.Unicode);
foreach (TListItem item in Source)
fileDestination.WriteLine(Convert.ToString(item));
fileDestination.Flush();
fileDestination.Close();
}
}
guest 11.04.2010 12:54 # +0.8
сколько можно постить УГ?
guest 11.04.2010 13:09 # +2
guest 11.04.2010 13:13 # +0.8
че, такой тупой, что не сообразил?
guest 11.04.2010 13:19 # −4.2
guest 11.04.2010 13:22 # −1.2
facepalm.cs
guest 11.04.2010 15:44 # −4.4
guest 11.04.2010 15:50 # −4.4
guest 11.04.2010 15:31 # −2.8
guest 11.04.2010 15:33 # +2.4
guest 11.04.2010 15:34 # +2.4
guest 11.04.2010 15:34 # +2.4
if(typeof(TListItem)==typeof(char))
guest 11.04.2010 15:37 # +2.4
guest 11.04.2010 15:38 # −1
Karasb 11.04.2010 20:48 # −0.2
guest 11.04.2010 22:10 # +3.4
Karasb 12.04.2010 23:00 # +2.6
Это не весь код, но думаю принцип понятен
guest 13.04.2010 08:05 # +2
Говнокодерный код "Перегоняет из списка в файл и обратно".
Код вселенской красоты "Добавляет одновременно в список и файл".
Karasb 13.04.2010 08:11 # 0
pushkoff 12.04.2010 17:04 # −1.6
guest 12.04.2010 08:02 # +2.4
guest 12.04.2010 18:29 # −1.4
guest 13.04.2010 05:41 # +1.2
guest 14.04.2010 00:03 # 0