- 1
- 2
- 3
- 4
- 5
try
{
File.Delete(generatedFile);
}
catch { }
Нашли или выдавили из себя код, который нельзя назвать нормальным, на который без улыбки не взглянешь? Не торопитесь его удалять или рефакторить, — запостите его на говнокод.ру, посмеёмся вместе!
+146
try
{
File.Delete(generatedFile);
}
catch { }
И такое бывает...
+119
private void Form1_Paint(object sender, PaintEventArgs e)
{
Graphics p=e.Graphics;
p.DrawRectangle(Pens.Black, 100, 100, 120, 120);
p.DrawLine(Pens.Black, 100, 100, 150, 80);
p.DrawLine(Pens.Black, 220, 100, 270, 80);
p.DrawLine(Pens.Black, 270, 80, 150, 80);
p.DrawLine(Pens.Black, 220, 220, 270, 190);
p.DrawLine(Pens.Black, 270, 190, 270, 80);
p.DrawLine(Pens.Black, 140, 100, 140, 220);//Вертикальные линнии
p.FillRectangle(Brushes.Beige, 101, 101, 39, 39);
p.FillRectangle(Brushes.Brown, 101, 141, 39, 39);
p.FillRectangle(Brushes.DarkBlue, 101, 181, 39, 39);
p.FillRectangle(Brushes.ForestGreen, 141, 101, 39, 39);
p.FillRectangle(Brushes.LightGreen, 181, 101, 39, 39);
p.FillRectangle(Brushes.MediumTurquoise, 141, 141, 39, 39);
p.FillRectangle(Brushes.OrangeRed, 181, 181, 39, 39);
p.FillRectangle(Brushes.Orchid, 141, 181, 39, 39);
p.FillRectangle(Brushes.Plum, 181, 141, 39, 39);
p.DrawLine(Pens.Black, 180, 100, 180, 220);//Вертикальные линнии
p.DrawLine(Pens.Black, 100, 140, 220, 140);// Горихонтальные линнии
p.DrawLine(Pens.Black, 100, 180, 220, 180);// Горихонтальные линнии
p.DrawLine(Pens.Black, 140, 100, 190, 80);
p.DrawLine(Pens.Black, 180, 100, 230, 80);
p.DrawLine(Pens.Black, 220, 140, 270, 115);
p.DrawLine(Pens.Black, 220, 180, 270, 155);
p.DrawLine(Pens.Black, 121, 92, 239, 92);
p.DrawLine(Pens.Black, 137, 86, 253, 86);
p.DrawLine(Pens.Black, 239, 92, 239, 209);
p.DrawLine(Pens.Black, 253, 86, 253, 200);
}
Рисуем одну грань кубика Рубика.
http://www.cyberforum.ru/csharp-beginners/thread281606.html
+120
(class|struct|union)[\s\r\n(\w+)]*?(\w*)[\s\r\n]*?(:[\s\r\n(virtual)]*?\w+[\s\r\n]*?\w+(<\s*\w*\s*>)?([\s\r\n]*?,[\s\r\n(virtual)]*?\w+[\s\r\n]*?\w+(<\s*\w*\s*>)?)*?)?[\s\r\n]*?{[^{}]*(((?'open'{)[^{}]*)+((?'close-open'})[^{}]*)+)*(?(Open)(?!))[^{}]*}\s*?;
Выделение из исходников именованных с++ классов. Глаза боятся, но вроде работает.
+121
public class IterateSQL
{
private int _start = 0;
private int _end = 0;
private int number = 0;
private string TOP_100_PERCENT = "100 percent ";
private string SELECT_FROM = " SELECT*FROM (";
private string SELECT_TOP_I = "SELECT TOP $I * FROM(";
private string SELECT_TOP_F = "SELECT TOP $F * FROM(";
private string JOINTURE = @" WHERE maTable.id NOT IN (SELECT maTable.id FROM(";
private string CLOSE = ") maTable)";
private string SELECT_COUNT = "SELECT COUNT(*) FROM ( XYZ ) maTable";
private string _sql;
private string _where;
private string _parameter = string.Empty;
private List<string> _tempParameterList = new List<string>();
private Dictionary<string, object> _finalParameterList = new Dictionary<string, object>();
public IterateSQL(string sql, string where, string parameter)
{
_sql = sql;
_where = where;
_parameter = parameter;
}
public string TransformAndReturnSQL(int start, int end)
{
_start = start;
_end = end;
if (_parameter == null)
_parameter = string.Empty;
string[] split = Utils.Splitter(_parameter);
number = split.Length;
StringBuilder sb = new StringBuilder(" XYZ ");
StringBuilder st = new StringBuilder();
for (int i = 0; i < number; i++)
{
if (split[i].ToString() != string.Empty)
sb.Insert(0, SELECT_FROM);
}
for (int i = 0; i < number; i++)
{
if (split[i].ToString() != string.Empty)
{
sb.Insert(sb.Length, _where);
sb.Replace("@param", split[i].ToString());
}
}
sb.Replace("XYZ", _sql);
st.Append(sb.ToString());
sb.Insert(0, SELECT_TOP_I);
sb.Append(JOINTURE);
sb.Append(SELECT_TOP_F);
sb.Append(st.ToString());
sb.Append(CLOSE);
sb.Replace("$I", _start.ToString());
sb.Replace("$F", _end.ToString());
return sb.ToString();
}
}
Вот так надо запросы строить!
+128
public void Dispose()
{
throw new NotImplementedException();
}
Студенты такие студенты
+111
// BasePage
public virtual void Page_Error(object sender, EventArgs e) { }
// Page
public override void Page_Error(object sender, EventArgs e) { }
Авторы-индусы были по всей видимости не в курсе о существовании OnError(EventArgs)
+136
if (demand.TargetDate == new DateTime())
{
}
+126
g.Graphics.DrawLine( p, this.pb.Width / 2 + 126, this.pb.Height / 2 + 176, this.pb.Width / 2 + 126, this.pb.Height / 2 + 176 + 20 );
g.Graphics.DrawLine( p, this.pb.Width / 2 - 126, this.pb.Height / 2 + 176, this.pb.Width / 2 - 126, this.pb.Height / 2 + 176 + 20 );
g.Graphics.DrawLine( new Pen( Color.Black ), this.pb.Width / 2 - 126, this.pb.Height / 2 + 176 + 20, this.pb.Width / 2 + 126, this.pb.Height / 2 + 176 + 20 );
g.Graphics.DrawLine( new Pen( Color.Black ), this.pb.Width / 2 - 126, this.pb.Height / 2 + 176 + 20, this.pb.Width / 2 - 126 + 8, this.pb.Height / 2 + 176 + 15 );
g.Graphics.DrawLine( new Pen( Color.Black ), this.pb.Width / 2 - 126, this.pb.Height / 2 + 176 + 20, this.pb.Width / 2 - 126 + 8, this.pb.Height / 2 + 176 + 25 );
g.Graphics.DrawLine( new Pen( Color.Black ), this.pb.Width / 2 + 126, this.pb.Height / 2 + 176 + 20, this.pb.Width / 2 + 126 - 8, this.pb.Height / 2 + 176 + 15 );
g.Graphics.DrawLine( new Pen( Color.Black ), this.pb.Width / 2 + 126, this.pb.Height / 2 + 176 + 20, this.pb.Width / 2 + 126 - 8, this.pb.Height / 2 + 176 + 25 );
g.Graphics.FillRectangle( Brushes.White, this.pb.Width / 2 - 25, this.pb.Height / 2 + 176 + 10, 50, 20 );
g.Graphics.DrawString( this.textBox1.Text + " mm", new Font( "Arial", 8 ), new SolidBrush( Color.Black ), this.pb.Width / 2 - 21, this.pb.Height / 2 + 176 + 12 );
g.Graphics.DrawLine( new Pen( Color.Black ), this.pb.Width / 2 - (int)paint_nozh_fill / 2, this.pb.Height / 2, this.pb.Width / 2 + (int)paint_nozh_fill / 2, this.pb.Height / 2 );
g.Graphics.DrawLine( new Pen( Color.Black ), this.pb.Width / 2 - (int)paint_nozh_fill / 2, this.pb.Height / 2, this.pb.Width / 2 - (int)paint_nozh_fill / 2 + 8, this.pb.Height / 2 - 5 );
g.Graphics.DrawLine( new Pen( Color.Black ), this.pb.Width / 2 - (int)paint_nozh_fill / 2, this.pb.Height / 2, this.pb.Width / 2 - (int)paint_nozh_fill / 2 + 8, this.pb.Height / 2 + 5 );
g.Graphics.DrawLine( new Pen( Color.Black ), this.pb.Width / 2 + (int)paint_nozh_fill / 2, this.pb.Height / 2, this.pb.Width / 2 + (int)paint_nozh_fill / 2 - 8, this.pb.Height / 2 - 5 );
g.Graphics.DrawLine( new Pen( Color.Black ), this.pb.Width / 2 + (int)paint_nozh_fill / 2, this.pb.Height / 2, this.pb.Width / 2 + (int)paint_nozh_fill / 2 - 8, this.pb.Height / 2 + 5 );
g.Graphics.FillRectangle( Brushes.White, this.pb.Width / 2 - 25, this.pb.Height / 2 - 10, 50, 20 );
g.Graphics.DrawString( this.getNozhFill( ).ToString( ) + " mm", new Font( "Arial", 8 ), new SolidBrush( Color.Black ), this.pb.Width / 2 - 21, this.pb.Height / 2 - 8 );
Человек похоже перепутал визул студию с фотошопом, но закрывать не стал )) Этот код рисует чертеж - примем со стрелочками, с откосами и даже(!) с отбрасывает тень. Понятия не имею как преписывать
+111
for (int i = 0; i < 10; i++)
{
Console.Write(";x=" + h * i * dn + ",U=" + res[i * dn, j * dm]);
}
Console.Write(";x=" + h * 10 * dn + ",U=" + res[10 * dn, j * dm]);
No comments
+118
object res = DataConnection.ExecuteScalar(sql);
int count = (int)(long)res;
Чтокуда?