Вы находитесь на странице: 1из 1

using

using
using
using
using
using
using

System;
System.Collection.Generic;
System.ComponentModel;
System.Drawing;
System.linq;
System.Reflection;
System.Windows.Forms;

namespace New_Urban_System_Project
{
partial class splash:form
{
public splash()
{
InitializeComponent();
}
*region Assembly Attribute Accessors
public string AssemblyTitle
{
get
{
object[] attributes = Assembly.GetExecutingAssembly().GetCusto
mAttributes(typeof(AssemblyTitleAttribute),false);
if (attributes.Length > 0)
{
AssemblyTitleAttribute tittleAttribute = (AssemblyTittleAt
tributes[0];
if (titleAttribute.Title !="")
{
return titleAttribute.Title;
}
}
return System.IO.Path.GetFileNameWithoutExtension(Assembly.Get
ExecutingAssembly().CodeBase);
}
}

Вам также может понравиться