static string sm_strVersion;
a = Assembly.GetEntryAssembly();
sm_strVersion = "Version:" + a.GetName().Version;
//version.cs file contains below code:
namespace FInclude
{
public partial class CFontData
{
public readonly string ToolVersion = "FL.001";
}
}
Can someone please explain about Assembly.GetEntryAssembly()?
Where I can get documentation on all the built-in functions in c#?
You can find an explanation of what
Assembly.GetEntryAssembly()does here.What do you mean by where you can get all the features? You mean documentation? Then start here.