English 中文(简体)
在基本问题上需要帮助。 净方案执行流量和与[闭门]相关的基本oo
原标题:Need help regarding very basic issue about .Net program execution flow and basic oops related [closed]
  • 时间:2012-04-25 13:30:45
  •  标签:
  • c#
  • .net
  • oop

关于净方案执行流量的疑问

几年来,我从事一项发展工作,但对于C#如何打赢或网吧缺乏知识。 当我们从国际民主和选举援助学会提出申请时,汇编者如何进入现场,汇编我们的方案,然后如何启动方案。 谁控制方案的切入点。 谁从外部援引方案切合点,即静态无效。 CLR如何负责实施该方案和计划;谁涉及CLR。 JIT如何参与和涉及JIT。 为什么入境点是静态的主点?

许多书本帮助我们用C#书写代码,但从未谈论方案执行流程。 当我们点上任何外联网时,便会怎样驾车。 如果可能的话,请详细讨论上述问题或向我提出正确条款。

对项目厅的怀疑

(1) i 看到一个属于私人但建筑商为公众的班级。 没有任何特殊目的,这就是为什么设计这种等级。

2) i 看到公共部门,但有三个建筑是私人的,一个是固定的,最后一个是公开的。

3) 固定等级总是有固定构造者?

4)如果一个公共部门与固定建筑商有正常的建筑商,那么目标是什么。

if possible then please discuss the above OOPS issue in details........thanks

最佳回答

当我们从民主选举学会提出申请时,汇编者如何进入现场汇编我们的方案。

民主选举学会开始编辑工作,然后通过编辑。 编辑是另一个方案。 它不需要特别的援引。 如果没有民主选举学会,你可以直接打电话csc.exe

之后,该方案如何启动......如何让航天中心进入现场,以及如何让国际信息技术公司进入现场。 谁控制方案的切入点。 谁从外部援引方案切合点,即静态无效。 捷克航天中心如何负责实施该方案和计划;谁涉及加拿大航天中心,联合信托公司如何参与和谁参与。

The JIT is the dynamic IL-to-native compiler. It s what translates the IL that .NET languages are compiled into so that the programs can actually run.

对我们来说,《刑法》是另一个世界。 我不想在这里详谈,但你可以找到更多关于管理网的内容。

为什么入境点是静态的主点?

Convention. Why is the language called C#?

i 看到一个私立但建筑商公开的班子。 没有任何特殊目的,这就是为什么设计这种等级。

这样做是为了让私立学校从外部班子中即时。 例如:

public class A {
    private something = new B();

    private class B {
        public B() {
            // ...
        }
    }
}

如果构造者为t public,那么 private 类别不能由外部舱面标明。

i 看到公立学校,但有三个建筑商是私人的,一个是静态的,最后一点是公开的。

Sure。 他们都做不同的事情。 这并非罕见。

固定等级总是有固定构造。

法定建筑商实际上非常少见。 当然,固定等级不能有正常的构造。

如果公共部门拥有正常的建筑商和固定建筑商,那么目标就是什么。

通常的构造者必须先入标。 静态构造者首次被称作使用舱。 仅仅因为一个班子都没有做特殊工作,就只能用这一功能做些什么。

问题回答

暂无回答




相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签