类似于:
假设我们有代码:
static void Main(string[] args)
{
int i = 100;
Action d = () => { i++; };
d();
Console.WriteLine(i.ToString());
}
我们将看到"101“的结果。
我知道如果匿名函数捕获局部变量,它会为局部变量和与匿名函数相关的方法创建一个带有字段的新类。
所以这个类看起来像(伪代码):
private class DisplayClass1
{
public int i;
public v
我有一个.html文件,它根据程序中采取的操作动态填充,但是在搜索确切的字符串时遇到了问题,问题是尽管我知道文件不是空的,但循环不返回任何内容并认为它是空的。
我已经搜索和阅读了许多其他的SO问题,并尝试了其中的许多问题,包括'blah' in line,re.findall和with open(),它们总是返回空白,我想我需要超文本标记语言解析或类似的?有人能为我解释一下这件事吗?
f = open(outApp + '_report.html', 'r+')
for line in f:
#check the for loop work
我对css和jQuery有小问题。我有两个按钮,我想设置的背景点击为蓝色,我想这样做‘活动’css属性。它没有因为某种原因而起作用。每当按钮不再活动时,它就会失去背景色。下面是代码: HTML:
<div id = 'hey'>
<div class = 'b' id = 'b1' href="#">Button one</div>
<div class = 'b' id = 'b2' href="#">Button Two
我使用css html创建了3个页面,对于第一页和第二页,我设置了页边距4cm,但是对于第三页,我希望将其设置为0cm。这是我的css代码
@media print {
@page
{
size:8.5in 13in;
margin:4.5cm 1mm 1mm 1mm; /* this just for page one and two */
mso-page-orientation: landscape;
}
@page :third {
margin: 0cm; /* for page 3 but not work*/
}
}
如何为每一页设定不同的页边距?谢谢