100+ results for 'foreach lang:c#'

Not the results you expected?

Default.aspx.cs (http://seautils.googlecode.com/svn/trunk/) C# · 225 lines

55 private bool containRequestString(string reqStr)

56 {

57 foreach (string key in this.Request.Params.AllKeys)

58 {

59 if (key.Equals(reqStr)) return true;

83

84 //If not exist, check the alterNames

85 foreach (string alterName in alertNames)

86 {

87 if (!string.IsNullOrEmpty(value)) break;

146 if (this.obj_result_classes != null)

147 {

148 foreach (CIMClass cim in this.obj_result_classes)

149 {

150 addListItem(ClassListBox, cim.name, cim.name);

RotatedRectangle.cs (http://big-mcgreed.googlecode.com/svn/trunk/) C# · 278 lines

74 //a collision DOES occur on ALL of the Axis, then there is a collision occurring

75 //between the rotated rectangles. We know this to be true by the Seperating Axis Theorem

76 foreach (Vector2 aAxis in aRectangleAxis)

77 {

78 if (!IsAxisCollision(theRectangle, aAxis))

BlockStatement.cs (https://LinqOverCSharp.svn.codeplex.com/svn) C# · 261 lines

175 private static bool IsVariableInChildBlock(IBlockOwner block, LocalVariable localVariable)

176 {

177 foreach (IBlockOwner childBlock in block.ChildBlocks)

178 {

179 if (childBlock.Variables.Contains(localVariable))

222 get

223 {

224 foreach (Statement stmt in _Statements)

225 {

226 BlockStatement block = stmt as BlockStatement;

231 else

232 {

233 foreach (Statement nested in block.NestedStatements)

234 yield return nested;

235 }

BaseContentType.cs (https://sp2010recruitment.svn.codeplex.com/svn) C# · 303 lines

228 IEnumerable<ListColumn> listColumns = this.GetListColumns();

229

230 foreach (ListColumn listColumn in listColumns)

231 {

232 log.Write(LogLevel.Info, "Try to add '{0}' field link to '{1}' content type in '{2}' web.", listColumn.InternalName, contentTypeName, web.ServerRelativeUrl);

SelectionTracker.cs (https://VSXtra.svn.codeplex.com/svn) C# · 239 lines

213 {

214 var result = new ArrayList();

215 foreach (var item in list) result.Add(item);

216 return result;

217 }

SqlSourceProvider.cs (https://dbdoc.svn.codeplex.com/svn) C# · 206 lines

71 Server server = new Server(cn);

72 IList<string> databases = new List<string>();

73 foreach (Microsoft.SqlServer.Management.Smo.Database db in server.Databases)

74 if (!excludeDatabases.Contains(db.Name))

75 databases.Add(db.Name);

90

91 if (db != null && !excludeDatabases.Contains(db.Name))

92 foreach (Microsoft.SqlServer.Management.Smo.Table tbl in db.Tables)

93 tables.Add(tbl.Name);

94

107 Microsoft.SqlServer.Management.Smo.Database db = server.Databases[database];

108 if (db != null)

109 foreach (Microsoft.SqlServer.Management.Smo.View vw in db.Views)

110 views.Add(vw.Name);

111

BatchCommandGroup.cs (https://opentrader.svn.codeplex.com/svn) C# · 270 lines

204 IDictionary<string, string> variables = new Dictionary<string, string>();

205

206 foreach (var assignment in parameters)

207 {

208 var couple = assignment.Split(new[] { '=' });

235

236 // Replace variables by their values

237 foreach (var va in variables.Keys)

238 {

239 s = s.Replace("$" + va, variables[va]);

Assembly.cs (https://SolutionFramework.svn.codeplex.com/svn) C# · 337 lines

117 else

118 {

119 foreach (System.Type type in assembly.GetTypes().Where(t => t.IsPublic))

120 {

121 types.Add(new AssemblyType(type, this));

293 get

294 {

295 foreach (var type in this.Types)

296 {

297 yield return type;

OptionField.cs (https://EpiInfo.svn.codeplex.com/svn) C# · 297 lines

243 {

244 string optionsString = string.Empty;

245 foreach (string option in Options)

246 {

247 optionsString = optionsString + option + ',';

Excel2007.php (https://PHPExcel.svn.codeplex.com/svn) PHP · 518 lines ✨ Summary

This PHP class generates an Excel file using the PHPExcel library. It allows setting various options, such as formatting styles, fonts, borders, and more. The class also handles disk caching for improved performance. It can be used to create Excel files programmatically, making it a useful tool for data export or reporting applications.

153

154 // Assign parent IWriter

155 foreach ($this->_writerParts as $writer) {

156 $writer->setParentWriter($this);

157 }

292

293 // Media

294 foreach ($this->_spreadSheet->getSheet($i)->getHeaderFooter()->getImages() as $image) {

295 $objZip->addFromString('xl/media/' . $image->getIndexedFilename(), file_get_contents($image->getPath()));

296 }

RegionAdapterBase.cs (https://PasswordMgr.svn.codeplex.com/svn) C# · 178 lines

102 DependencyObject dependencyObjectRegionTarget = regionTarget as DependencyObject;

103

104 foreach (string behaviorKey in behaviorFactory)

105 {

106 if (!region.Behaviors.ContainsKey(behaviorKey))

NamedObjectCollection.cs (https://EpiInfo.svn.codeplex.com/svn) C# · 277 lines

92 {

93 List<string> namesList = new List<string>();

94 foreach (INamedObject obj in this)

95 {

96 namesList.Add(obj.Name);

194 public void Add(NamedObjectCollection<T> collection)

195 {

196 foreach (T obj in collection)

197 {

198 Add(obj);

UserData.cs (https://NBgeili.svn.codeplex.com/svn) C# · 446 lines

282 List<UserEntity> result = new List<UserEntity>();

283 DataTable dt = GetAllUsers();

284 foreach (DataRow dr in dt.Rows)

285 {

286 UserEntity entity = GetUserEntity(dr);

383 List<UserEntity> result = new List<UserEntity>();

384 DataTable dt = GetUserTableLikeId(userId);

385 foreach (DataRow dr in dt.Rows)

386 {

387 UserEntity entity = GetUserEntity(dr);

427 List<UserEntity> result = new List<UserEntity>();

428 DataTable dt = GetUserTableLikeName(userName);

429 foreach (DataRow dr in dt.Rows)

430 {

431 UserEntity entity = GetUserEntity(dr);

DbHelper.cs (http://yuicore.googlecode.com/svn/trunk/) C# · 370 lines

79 public void AddParameterCollection(DbCommand cmd, DbParameterCollection dbParameterCollection)

80 {

81 foreach (DbParameter dbParameter in dbParameterCollection)

82 {

83 cmd.Parameters.Add(dbParameter);

EnumerableExtension.cs (https://jumony.svn.codeplex.com/svn) C# · 602 lines

59

60

61 foreach ( T item in source )

62 {

63 action( item );

103 int i = 0;

104

105 foreach ( T item in source )

106 {

107 action( item, i++ );

133 bool assigned = false;

134

135 foreach ( var item in source )

136 {

137 if ( assigned )

TreeBuilderTreeNodeMenuItem.cs (https://SolutionFramework.svn.codeplex.com/svn) C# · 373 lines

129 var subMenus = new List<IContextMenuItem>();

130

131 foreach (var field in typeof(TreeNodeMenuItemStockAction).GetFields())

132 {

133 if ((field.Attributes & System.Reflection.FieldAttributes.Static) > 0)

154 IElement element = (IElement)this.BaseObject;

155

156 foreach (var childElement in element.ChildElements)

157 {

158 if (childElement.DataType.IsCollectionType)

188 IElement element = (IElement)menuItem.MenuSource;

189

190 foreach (var operation in element.Operations)

191 {

192 subMenus.Add(new ContextMenuItem(null, operation.Name, operation.Name, (sender, e) =>

TableHtmlAgilityPack.cs (http://htmlconvertsql.googlecode.com/svn/trunk/) C# · 222 lines

39 // var query2 = from col in r1.SelectNodes("td").Cast<HtmlNode>()

40 // select col;

41 // foreach (var c in query2)

42 // {

43 // i++;

46 // #endregion

47 // #region ?????????

48 // foreach (var r in query)

49 // {

50 // i = 0;

53 // var query3 = from col in r.SelectNodes("td").Cast<HtmlNode>()

54 // select col;

55 // foreach (var c in query3)

56 // {

57 // i++;

___ActiveContentChangedMonitor.cs (https://radical.svn.codeplex.com/svn) C# · 211 lines

194 // {

195 // var all = this.monitoredRegions.Keys.ToArray();

196 // foreach( var mr in all )

197 // {

198 // this.StopMonitoring( mr );

PluginManager.cs (https://freetime.svn.codeplex.com/svn) C# · 252 lines

63 private void SetRequiredAttributes()

64 {

65 foreach (PluginManagerConfigurationAttribute attribute in Configuration.Attributes)

66 {

67 if (attribute.Key == "WebControllersConfig")

Program.cs (https://SPConstantGen.svn.codeplex.com/svn) C# · 194 lines

87 static void AddFieldCollection(SPFieldCollection fields, ClassDeclaration fieldsStruct)

88 {

89 foreach (SPField field in fields)

90 {

91 if (fieldsStruct.NestedClasses.Contains(field.StaticName))

118 StringCollection existing = new StringCollection();

119

120 foreach (SPList list in web.Lists)

121 {

122 string listTitleNoWhitespace = list.Title.Replace(" ", "");

178 StringCollection existing = new StringCollection();

179

180 foreach (SPWeb currentweb in web.Webs)

181 {

182 string webNameNoWhitespace = web.Name.Replace(" ", "");

DataServiceCollection.cs (https://ssatool.svn.codeplex.com/svn) C# · 238 lines

117 Clear();

118

119 foreach (Service service in _domainCollection)

120 {

121 Items.Add(new DataService(this, service));

CMSPageVersion.cs (https://webquarters.svn.codeplex.com/svn) C# · 267 lines

215 public void MakeLive()

216 {

217 Table.Where(e => e.IsLive && e.PageId == this.PageId).ToList().ForEach(e => e.Delete());

218

219 var v = CMSPageVersion.Load(this.PageVersionId);

239 .Where(e => e.Category == "CMSPageVersion.MakeLive" && e.Target == PageId.ToString())

240 .ToList();

241 foreach (var evt in events)

242 {

243 var pageJSON = GeneralUtils.FromJSON<CMSPageVersion.JSON>(evt.Message);

254 .Where(e => e.Category == "CMSPageVersion.MakeLive" && e.Target == PageId.ToString())

255 .ToList();

256 foreach (var evt in events)

257 {

258 var pageJSON = GeneralUtils.FromJSON<CMSPageVersion.JSON>(evt.Message);

TinyPlug.cs (https://TinyPlug.svn.codeplex.com/svn) C# · 312 lines

95 public virtual bool IsSupportedInterface(Type plugIn)

96 {

97 foreach (var possiblePlugIn in plugIn.GetInterfaces())

98 {

99 if (LoadedPlugIns.ContainsKey(possiblePlugIn))

174 {

175 if (types == null) throw new ArgumentNullException("types");

176 foreach (var possiblePlugin in types)

177 {

178 RegisterPlugIn(typeof(T), possiblePlugin);

200 }

201

202 foreach (var supportedInterface in

203 actualPlugIn.GetInterfaces()

204 .Where(x => LoadedPlugIns.Keys.Contains(x)))

UserController.cs (http://graduate-ndkhoiits.googlecode.com/svn/trunk/) C# · 197 lines

125 {

126 DataRow[] dtItems = GetUserPermissionByParentID(dtCommand, 0);

127 foreach (DataRow row in dtItems)

128 {

129 DataRow rowItem = dtReturnCommand.NewRow();

152 int _commandID = Convert.ToInt32(curItem["CommandID"]);

153 DataRow[] dtChild = GetUserPermissionByParentID(dtCommand, _commandID);

154 foreach (DataRow row in dtChild)

155 {

156 DataRow childItem = dtReturnCommand.NewRow();

Plane3.cs (https://axe.svn.codeplex.com/svn) C# · 439 lines

156 Sign sign = Sign.Undefined;

157

158 foreach( Vector3 p in polygon.Points )

159 {

160 sign = Math3D.CombineSigns( sign, this.GetSign( p ) );

PoolValuesControl.cs (https://IronSmalltalk.svn.codeplex.com/svn) C# · 342 lines

180 return;

181

182 foreach (PoolValue value in this.Pool.Values.OrderBy(v => v.Name))

183 {

184 ListViewItem lvi = this.listPoolVars.Items.Add(value.Name, "field");

191 private void SetSelection()

192 {

193 foreach (ListViewItem lvi in this.listPoolVars.Items)

194 lvi.Selected = (lvi.Tag == this.PoolValue);

195 }

276 if (this.Pool != null)

277 {

278 foreach (PoolValue v in this.Pool.Values)

279 {

280 if (v != this.PoolValue)

CourseComponent.cs (https://PlacementManager.svn.codeplex.com/svn) C# · 293 lines

72 DataSet ds = o.SelectAll();

73

74 foreach (DataRow row in ds.Tables[0].Rows)

75 {

76 listCourse.Add(new Course((int)row["CourseId"], (int)row["DivisionId"], (string)row["CourseCode"], (string)row["CourseName"], (bool)row["IsActive"], (DateTime)row["DateCreated"], (string)row["CreatedBy"], (DateTime)row["DateUpdated"], (string)row["UpdatedBy"]));

97 o.DivisionId = DivisionId;

98 DataSet ds = o.SelectAllWDivisionId();

99 foreach (DataRow row in ds.Tables[0].Rows)

100 {

101 listCourse.Add(new Course((int)row["CourseId"], (int)row["DivisionId"], (string)row["CourseCode"], (string)row["CourseName"], (bool)row["IsActive"], (DateTime)row["DateCreated"], (string)row["CreatedBy"], (DateTime)row["DateUpdated"], (string)row["UpdatedBy"]));

ExpenseForm.cs (https://expensetracker.svn.codeplex.com/svn) C# · 333 lines

75 cbCategory.Items.Clear();

76 List<Category> list = _categoryController.GetCategories(TransactionType.Expense);

77 foreach (Category item in list)

78 {

79 cbCategory.Items.Add(item);

MongoDBRepository.cs (https://AgileDDDFramework.svn.codeplex.com/svn) C# · 296 lines

178 if (orderByFileds != null && orderByFileds.Length > 0)

179 {

180 foreach (var field in orderByFileds)

181 {

182 var le = Utility.GetLambdaExpression(typeof(TEntity), field);

241 if (orderByFileds != null && orderByFileds.Length > 0)

242 {

243 foreach (var field in orderByFileds)

244 {

245 var le = Utility.GetLambdaExpression(typeof(TEntity), field);

Variable.cs (https://expressionscompiler.svn.codeplex.com/svn) C# · 415 lines

92 if (_outputReferences.Count > 0)

93 {

94 foreach (Variable cell in _outputReferences)

95 {

96 cell.Eval();

107 if (_inputReferences.Count > 0)

108 {

109 foreach (var cell in _inputReferences)

110 {

111 cell.Visit();

232 HashSet<Variable> outputReferences = new HashSet<Variable>();

233 Decompile(outputReferences, MathExpression);

234 foreach (Variable cell in outputReferences)

235 {

236 cell.SubscribeInput(this);

RssBase.cs (http://yuicore.googlecode.com/svn/trunk/) C# · 357 lines

343 {

344 WritePrologue();

345 foreach (ItemInfo info in items)

346 {

347 WriteItem(info);

Cell.cs (https://expressionscompiler.svn.codeplex.com/svn) C# · 500 lines

79 {

80 int rowIndex = 0;

81 foreach (char ch in name)

82 {

83 rowIndex *= 26;

103 {

104 int colIndex = 0;

105 foreach (char ch in name)

106 {

107 colIndex = colIndex * 10 + ch - '0';

146 if (_outputReferences.Count > 0)

147 {

148 foreach (Cell cell in _outputReferences)

149 {

150 cell.Eval();

PolygonF.cs (https://GPSYVManejadorDeMapa.svn.codeplex.com/svn) C# · 465 lines

47 _maxy = _pts[0].Y;

48

49 foreach (PointF pt in _pts)

50 {

51 if (pt.X < _minx)

274 _maxy = _pts[0].Y;

275

276 foreach (Point pt in _pts)

277 {

278 if (pt.X < _minx)

Param.cs (https://PropertyExpression.svn.codeplex.com/svn) C# · 409 lines

306 var dataTable = new DataTable();

307 var propertyInfos = typeof(T).GetProperties();

308 foreach (var propertyInfo in propertyInfos)

309 {

310 dataTable.Columns.Add(propertyInfo.Name, propertyInfo.PropertyType);

311 }

312 foreach (var item in value)

313 {

314 foreach (var propertyInfo in propertyInfos)

au_PmeMethod.cs (https://itsolutions.svn.codeplex.com/svn) C# · 329 lines

294 if (e.NewItems != null)

295 {

296 foreach (au_PersonPmeHistory item in e.NewItems)

297 {

298 item.au_PmeMethod = this;

310 if (e.OldItems != null)

311 {

312 foreach (au_PersonPmeHistory item in e.OldItems)

313 {

314 if (ReferenceEquals(item.au_PmeMethod, this))

Address_Type.cs (https://openerp.svn.codeplex.com/svn) C# · 300 lines

226 if (e.NewItems != null)

227 {

228 foreach (ClientAddress item in e.NewItems)

229 {

230 item.Address_Type = this;

242 if (e.OldItems != null)

243 {

244 foreach (ClientAddress item in e.OldItems)

245 {

246 if (ReferenceEquals(item.Address_Type, this))

265 if (e.NewItems != null)

266 {

267 foreach (SupplierAddress item in e.NewItems)

268 {

269 item.Address_Type = this;

ESharpScope.cs (https://NBusiness.svn.codeplex.com/svn) C# · 224 lines

57

58 EntityElement previous = null;

59 foreach (EntityElement e in elements)

60 {

61 if (e == element)

100 private void GetFieldDeclarations(List<ESharpDeclaration> declarations, EntityElement element, EntityCompileUnit unit)

101 {

102 foreach (EntityField field in ((unit as EntityField).Parent as Entity).Fields)

103 {

104 if (field != unit)

130 private void GetFieldTypeDeclarations(List<ESharpDeclaration> declarations, EntityElement element)

131 {

132 foreach (string name in ESharpField.GetFieldTypeNames())

133 {

134 declarations.Add(new ESharpDeclaration { Title = name.ToLower(), Type = element.Type });

Theme.cs (https://blackstar.svn.codeplex.com/svn) C# · 263 lines

137 private void CheckPartLists()

138 {

139 foreach (KeyValuePair<string, List<string>> style in this.PartLists)

140 {

141 if (style.Value.Count != 9)

145 }

146

147 foreach (string key in style.Value)

148 {

149 if (!Rectangles.ContainsKey(key))

DatabaseTargetTextStorage.cs (https://sandassist.svn.codeplex.com/svn) C# · 312 lines

236 "System.Windows.Media.xml",

237 };

238 foreach (string fileName in quickList)

239 {

240 string filePath = Path.Combine(dataDir, fileName);

MetadataReaderReflectDescriptions.cs (https://objectcomparer.svn.codeplex.com/svn) C# · 185 lines

37 //throw new ArgumentException(string.Format("Did not found a class description for type '{0}'", typeName));

38

39 classDescription.Properties.ForEach(x => {

40 if (x.MemberInfo == null) {

41 var members = t.GetMember(x.FullName, _context.Configuration.GetMemberBindingFlags);

55

56 var interfaceTypes = type.GetInterfaces();

57 foreach (var cd in _context.Configuration.ClassDescriptions) {

58 var ifType = Array.Find(interfaceTypes, x => string.Equals(x.FullName, cd.FullName));

59 if (ifType != null) {

86 if (cd == null) {

87 var ifTypes = t.GetInterfaces();

88 foreach (var ifType in ifTypes) {

89 cd = _context.Configuration.ClassDescriptions.Find(x => {

90 if (x.FullName == ifType.FullName)

Tasks.cs (https://teamprojectmanager.svn.codeplex.com/svn) C# · 161 lines

15 var step = 0;

16

17 foreach (var teamProjectName in teamProjectNames)

18 {

19 task.SetProgress(step++, string.Format(CultureInfo.CurrentCulture, "Processing Team Project \"{0}\"", teamProjectName));

22 var teamProjectBuildDefinitions = buildServer.QueryBuildDefinitions(teamProjectName, QueryOptions.Process);

23

24 foreach (var processTemplate in buildServer.QueryProcessTemplates(teamProjectName))

25 {

26 var processTemplateBuildDefinitions = new List<IBuildDefinition>();

27 foreach (var teamProjectBuildDefinition in teamProjectBuildDefinitions)

28 {

29 if (teamProjectBuildDefinition.Process != null && BuildProcessTemplateInfo.AreEquivalent(teamProjectBuildDefinition.Process, processTemplate))

BindableEnumerable.Aggregate.cs (https://bindablelinq.svn.codeplex.com/svn) C# · 145 lines

126 {

127 var current = seed;

128 foreach (var sourceElement in sourceElements)

129 {

130 current = compiledAccumulator(current, sourceElement);

WebTemplateSharePointCommands.cs (https://cksdev.svn.codeplex.com/svn) C# · 211 lines

53 SPWebTemplateCollection webTemplates = context.Web.GetAvailableWebTemplates((uint)context.Web.Locale.LCID, true);

54

55 foreach (SPWebTemplate item in webTemplates)

56 {

57 if(!categories.Contains(item.DisplayCategory))

90 SPWebTemplateCollection webTemplates = context.Web.GetAvailableWebTemplates((uint)context.Web.Locale.LCID, true);

91

92 foreach (SPWebTemplate item in webTemplates)

93 {

94 if (item.DisplayCategory == category)

171 SPWebTemplateCollection webTemplates = caSite.GetWebTemplates((uint)rootWeb.Locale.LCID);

172

173 foreach (SPWebTemplate item in webTemplates)

174 {

175 //Check the temaplate is a site defintion and has a display category

TotalFunctionTest.cs (https://cbucks.svn.codeplex.com/svn) C# · 362 lines

340 public void valuesTest() {

341 int j = 0;

342 foreach(int i in itd.values) j++;

343 }

344

349 public void valuesTest2() {

350 int j = 0;

351 foreach(bool b in btd.values)

352 if(j++ == 0)

353 Assert.IsFalse(b);

CommentInfo.cs (https://LinqOverCSharp.svn.codeplex.com/svn) C# · 239 lines

231 get

232 {

233 foreach (CommentInfo comment in this)

234 if (comment.HasDocumentation) return true;

235 return false;

FilterIterator.cs (https://WPFImageViewer.svn.codeplex.com/svn) C# · 300 lines

85 if (formats != null)

86 {

87 foreach (var kvp in formats)

88 {

89 results.Add(kvp.Key);

ExpressionLevel.cs (git://github.com/sones/sones.git) C# · 275 lines ✨ Summary

This C# code defines a class ExpressionLevel that represents a level in an expression graph. It provides methods to add nodes and edges, remove nodes, and retrieve node information. The class uses locks to ensure thread safety and stores node information in a dictionary. It also overrides the ToString method to return a string representation of the level’s count.

181 {

182 //the node already exist, so update its edges

183 foreach (var aBackwardEdge in expressionNode.BackwardEdges)

184 {

185 _Content[levelKey].Nodes[node].AddBackwardEdges(aBackwardEdge.Value);

186 }

187

188 foreach (var aForwardsEdge in expressionNode.ForwardEdges)

189 {

190 _Content[levelKey].Nodes[node].AddForwardEdges(aForwardsEdge.Value);

Source.cs (https://htchome.svn.codeplex.com/svn) C# · 159 lines ✨ Summary

This C# code defines a Source class that represents a news source, such as a website or RSS feed. It provides methods for refreshing and clearing the source’s data, including parsing XML feeds using XSLT transformations. The class also includes an event for notifying subscribers when new data is available.

49 if (newItems.Count > 0)

50 {

51 foreach (var newItem in newItems)

52 {

53 if (newItem.PublicationDate.CompareTo(_lastFeedDate) == 1)

86 // if (newItems.Count > 0)

87 // {

88 // foreach (var syndicationItem in newItems)

89 // {

90 // if (syndicationItem.PublishDate.CompareTo(_lastFeedDate) == 1)

HostConfiguratorImpl.cs (git://github.com/phatboyg/Topshelf.git) C# · 232 lines

70 }

71

72 foreach (ValidateResult result in _configurators.SelectMany(x => x.Validate()))

73 yield return result;

74

198 HostBuilder builder = _hostBuilderFactory(environment, _settings);

199

200 foreach (HostBuilderConfigurator configurator in _configurators)

201 builder = configurator.Configure(builder);

202

206 void ApplyCommandLineOptions(IEnumerable<Option> options)

207 {

208 foreach (Option option in options)

209 option.ApplyTo(this);

210 }

ItemsRepository.cs (https://bitbucket.org/roy_d_merkel/gameoflifeapionly.git) C# · 227 lines

67 }

68

69 foreach (Dictionary<string, object> row in rs)

70 {

71 object id;

SetPowerFm.cs (https://NBgeili.svn.codeplex.com/svn) C# · 289 lines

42

43 List<ModuleEntity> entitys = ModuleData.GetInstance().GetAllModuleEntitys();

44 foreach (ModuleEntity entity in entitys)

45 {

46 HFTreeNode tmpNode = new HFTreeNode();

67 List<FunctionEntity> entitys = FunctionData.GetInstance().GetFunctionEntitysByModule(tmpNowNode.NodeId);

68 tmpNowNode.Nodes.Clear();

69 foreach (FunctionEntity entity in entitys)

70 {

71 HFTreeNode tmpNode = new HFTreeNode();

88 List<OperationEntity> entitys = OperationData.GetInstance().GetOperationEntitysByFunction(tmpNowNode.NodeId);

89 tmpNowNode.Nodes.Clear();

90 foreach (OperationEntity entity in entitys)

91 {

92 HFTreeNode tmpNode = new HFTreeNode();

ProtocolMessagesControl.cs (https://IronSmalltalk.svn.codeplex.com/svn) C# · 295 lines

134 this.Updating = true;

135 this.listMessages.SelectedItems.Clear();

136 foreach (ListViewItem lvi in this.listMessages.Items)

137 {

138 if (lvi.Tag == e.NewValue)

155 if (this.Protocol == null)

156 return;

157 foreach (Definitions.Description.Message item in this.Protocol.Messages.OrderBy(m => m.Selector))

158 {

159 ListViewItem lvi = this.listMessages.Items.Add(item.Selector);

Parameters.cs (git://github.com/rasoolims/MSTParserCSharp.git) C# · 284 lines

66 {

67 fv = dist[k];

68 foreach (Feature feature in fv.FVector)

69 {

70 if (feature.Index < 0)

79 {

80 double score = 0.0;

81 foreach (Feature feature in fv.FVector)

82 {

83 if (feature.Index >= 0)

AppleNotificationPayload.cs (git://github.com/Redth/PushSharp.git) C# · 257 lines

119 json["aps"] = aps;

120

121 foreach (string key in this.CustomItems.Keys)

122 {

123 if (this.CustomItems[key].Length == 1)

130

131 StringBuilder encodedString = new StringBuilder();

132 foreach (char c in rawString)

133 {

134 if ((int)c < 32 || (int)c > 127)

170 // var locArgs = new StringBuilder();

171

172 // foreach (var larg in this.Alert.LocalizedArgs)

173 // {

174 // if (double.TryParse(larg.ToString(), out tmpDbl)

BookmarkListFrame.xaml.cs (https://GISforTabletopsAPI.svn.codeplex.com/svn) C# · 289 lines

67 public void PopulateBookmarkList()

68 {

69 foreach (Bookmark tt in BookmarkList.Instance.getBookmarks())

70 {

71 this.AddBookmark(tt);

MyConnections.cs (https://bscmff.svn.codeplex.com/svn) C# · 312 lines

26 Add(connectFromElement, connectToElement, adjustOnly: true);

27

28 foreach (var connect in TrackMyConnections.Where(connect => connectFromElement == connect.ToElement))

29 {

30 Add(connect.FromElement, connect.ToElement, adjustOnly: true);

35 public static void Adjust(UserControl connectToElement)

36 {

37 foreach (var connect in TrackMyConnections.Where(connect => connectToElement == connect.ToElement))

38 {

39 Add(connect.FromElement, connect.ToElement, adjustOnly: true);

143 {

144

145 foreach (var connectionObject in TrackMyConnections)

146 {

147 if (connectionObject.FromElement == FromElement && connectionObject.ToElement == ToElement)

DataBaseHelper.cs (https://sisvendas.svn.codeplex.com/svn) C# · 416 lines

379 List<T> lista = new List<T>();

380

381 foreach (DataRow r in dt.Rows)

382 {

383 T t = new T();

384

385 foreach (PropertyInfo pi in t.GetType().GetProperties())

386 {

387 if (dt.Columns.IndexOf(pi.Name) > -1)

Certification.data.cs (https://IntellectShop.svn.codeplex.com/svn) C# · 340 lines

26

27 List<Common.Category> result = new List<Category>();

28 foreach (var row in query)

29 {

30 result.Add(new Common.Category

160 Dictionary<Common.Category, List<Common.Certification>> result = new Dictionary<Common.Category, List<Common.Certification>>();

161 Common.Category selectedCategory = null;

162 foreach (var row in query)

163 {

164 selectedCategory = new Common.Category { CategoryID = row.CategoryID, Name = row.CategoryName, SortingID = row.CategorySortingID };

225 };

226

227 foreach (var each in queryCertifications)

228 {

229 selectedCertifications.Add(new Common.Certification

MainChildForm.cs (https://NBgeili.svn.codeplex.com/svn) C# · 393 lines

342 try

343 {

344 foreach (DataRow dr in dt.Rows)

345 {

346 MainChildFormViewEntity entity = new MainChildFormViewEntity();

HabaneroStringBuilder.cs (https://habanero.svn.codeplex.com/svn) C# · 304 lines

81 String newString = _string.ToString();

82 List<QuotedSection> doubleQuotedSections = new List<QuotedSection>();

83 foreach (String quote in _quotes)

84 {

85 int posDouble = 0;

95 }

96 int offset = 0;

97 foreach (String quote in _quotes)

98 {

99 int pos = newString.IndexOf(quote);

219 if (_quotedSections != null)

220 {

221 foreach (QuotedSection quote in _quotedSections)

222 {

223 if ((quote.pos >= startIndex) && (quote.pos <= startIndex + length))

Board.cs (http://swingamesdk.googlecode.com/svn/trunk/) C# · 328 lines

102 public IEnumerator<Queen> GetEnumerator()

103 {

104 foreach(GameProject.Queen q in Queens) yield return q;

105 }

106

107 IEnumerator IEnumerable.GetEnumerator()

108 {

109 foreach(GameProject.Queen q in Queens) yield return q;

110 }

111

122 Graphics.ClearScreen();

123

124 foreach(Queen q in this)

125 {

126 int conflicts = q.Conflicts;

t_turnos.cs (http://ppp-eym.googlecode.com/svn/trunk/) C# · 347 lines

191 // This is the principal end in an association that performs cascade deletes.

192 // Remove the cascade delete event handler for any entities in the current collection.

193 foreach (dat_trab item in _dat_trab)

194 {

195 ChangeTracker.ObjectStateChanging -= item.HandleCascadeDelete;

202 // This is the principal end in an association that performs cascade deletes.

203 // Add the cascade delete event handler for any entities that are already in the new collection.

204 foreach (dat_trab item in _dat_trab)

205 {

206 ChangeTracker.ObjectStateChanging += item.HandleCascadeDelete;

306 if (e.NewItems != null)

307 {

308 foreach (dat_trab item in e.NewItems)

309 {

310 item.t_turnos = this;

TraceListenerBase.cs (https://hg01.codeplex.com/catel) C# · 177 lines

44 TraceSourceCollection.Add(PresentationTraceSources.ResourceDictionarySource);

45

46 foreach (TraceSource traceSource in TraceSourceCollection)

47 {

48 traceSource.Listeners.Add(this);

GorgonTrackedObjectCollection.cs (http://gorgonlib.googlecode.com/svn/) C# · 242 lines

25 var items = _objects.ToArray();

26

27 foreach (var item in items)

28 item.Dispose();

29

222 public IEnumerator<IDisposable> GetEnumerator()

223 {

224 foreach (IDisposable item in _objects)

225 yield return item;

226 }

Restrictions.cs (https://IronPython.svn.codeplex.com/svn) C# · 262 lines ✨ Summary

This C# code defines a class Restrictions that represents a set of restrictions on types and instances. It provides methods to create restrictions, merge them, and combine them from multiple sources. The restrictions can be used to test if an object meets certain conditions, such as being of a specific type or having a particular instance.

126 /// </summary>

127 private static void AddRestrictions(Restriction[] list, List<Restriction> res) {

128 foreach (Restriction r in list) {

129 bool found = false;

130 for (int j = 0; j < res.Count; j++) {

169 Restrictions res = Restrictions.Empty;

170 if (contributingObjects != null) {

171 foreach (MetaObject mo in contributingObjects) {

172 if (mo != null) {

173 res = res.Merge(mo.Restrictions);

181 // TODO: Currently totally unoptimized and unordered

182 Expression test = null;

183 foreach (Restriction r in _restrictions) {

184 Expression one;

185 switch (r.Kind) {

DelegateCommand.cs (http://rb-vms.googlecode.com/svn/trunk/) C# · 435 lines

374 if (handlers != null)

375 {

376 foreach (WeakReference handlerRef in handlers)

377 {

378 EventHandler handler = handlerRef.Target as EventHandler;

389 if (handlers != null)

390 {

391 foreach (WeakReference handlerRef in handlers)

392 {

393 EventHandler handler = handlerRef.Target as EventHandler;

JSonDictionary.cs (https://codetitans.svn.codeplex.com/svn) C# · 503 lines

38 _data = new Dictionary<String, IJSonObject>();

39

40 foreach (KeyValuePair<String, Object> d in data)

41 _data.Add(d.Key, (IJSonObject)d.Value);

42 }

162 Dictionary<string, object> result = new Dictionary<string, object>();

163

164 foreach (KeyValuePair<string, IJSonObject> v in _data)

165 {

166 result.Add(v.Key, v.Value.ObjectValue);

207 throw new IndexOutOfRangeException("Invalid key index");

208

209 foreach(var key in _data.Keys)

210 {

211 if (index == 0)

Ribbon1.cs (https://doctiss.svn.codeplex.com/svn) C# · 1031 lines

169 Globals.ThisAddIn.validationResults = new System.Collections.Generic.List<ValidationInfo>();

170 bool isGuiaTiss = false;

171 foreach (Microsoft.Office.Core.CustomXMLPart ccPart in Globals.ThisAddIn.Application.ActiveDocument.CustomXMLParts)

172 {

173

352 Office.CustomXMLPart cXMLPart = null;

353 TipoGuia tipoGuia = new TipoGuia();

354 foreach (Office.CustomXMLPart cPart in Globals.ThisAddIn.Application.ActiveDocument.CustomXMLParts)

355 {

356 if (cPart.XML.Contains("guiaResumoInternacao"))

510 Office.CustomXMLPart cXMLPart = null;

511

512 foreach (Office.CustomXMLPart cPart in Globals.ThisAddIn.Application.ActiveDocument.CustomXMLParts)

513 {

514 if (cPart.XML.Contains("guiaSP_SADTReapresentacao"))

Structure.cs (https://Arithmetics.svn.codeplex.com/svn) C# · 1303 lines

227 get {

228 var current = this.root.Data;

229 foreach (var item in Query2(this.root)) {

230 if (current.CompareTo(item.Data) < 0) {

231 current = item.Data;

238 get {

239 var current = this.root.Data;

240 foreach (var item in Query2(this.root)) {

241 if (current.CompareTo(item.Data) >= 0) {

242 current = item.Data;

340 }

341 var index = 0;

342 foreach (var item in Query2(root)) {

343 item.index = index++;

344 }

LRUCache.cs (http://r-tree-csharp-framework.googlecode.com/svn/trunk/) C# · 361 lines

230 writer.WriteLine(NumberOfNodes);

231 writer.WriteLine("AddressTranslationTable");

232 foreach (KeyValuePair<Address, Int64> entry in AddressTranslationTable)

233 {

234 writer.WriteLine(entry.Key);

236 }

237 writer.WriteLine("FreePages");

238 foreach (Int64 page in FreePages)

239 writer.WriteLine(page);

240 writer.Close();

ProcSection.cs (http://yuicore.googlecode.com/svn/trunk/) C# · 428 lines

31 public ProcSection AddParameters(params DbParameter[] parameters)

32 {

33 foreach (DbParameter parameter in parameters)

34 {

35 dbProvider.AddParameter(dbCommand, parameter);

407 {

408 IDictionary<string, object> returnValues = new Dictionary<string, object>();

409 foreach (string outParameter in outParameters)

410 {

411 DbParameter Parameter = dbProvider.GetParameter(cmd, outParameter);

GMLWriter.cs (https://SharpMap.svn.codeplex.com/svn) C# · 369 lines

79 protected void Write(ICoordinate[] coordinates, XmlTextWriter writer)

80 {

81 foreach (ICoordinate coord in coordinates)

82 Write(coord, writer);

83 }

288 {

289 int count = InitValue;

290 foreach (IGeometry g in geometryCollection.Geometries)

291 count += SetByteStreamLength(g);

292 return count;

301 {

302 int count = InitValue;

303 foreach (IPolygon p in multiPolygon.Geometries)

304 count += SetByteStreamLength(p);

305 return count;

CustomMethodManager.cs (https://LateBindingApi.svn.codeplex.com/svn) C# · 295 lines

34 private XElement GetMethodOverload(XElement itemMethod, IEnumerable<XElement> listParameters, int paramsCount)

35 {

36 foreach (XElement itemParameters in itemMethod.Elements("Parameters"))

37 {

38 if (itemParameters.Elements("Parameter").Count() == paramsCount)

40 }

41

42 foreach (XElement itemParameters in listParameters)

43 {

44 if (itemParameters.Elements("Parameter").Count() == paramsCount)

56 {

57 newParameters.Add(new XElement("ReturnValue"));

58 foreach (XAttribute item in itemParameters.Element("ReturnValue").Attributes())

59 newParameters.Element("ReturnValue").Add(new XAttribute(item.Name, item.Value));

60 }

TestBusinessObjectSerialisation.cs (https://habanero.svn.codeplex.com/svn) C# · 230 lines

132 private static void AssertPersonsAreEqual(IBusinessObject originalPerson, IBusinessObject deserialisedPerson)

133 {

134 foreach (IBOProp prop in originalPerson.Props)

135 {

136 Assert.AreEqual(prop.Value, deserialisedPerson.GetPropertyValue(prop.PropertyName));

TableSchema.cs (https://xlg.svn.codeplex.com/svn) C# · 326 lines

162 public TableKey Find(string ToFind)

163 {

164 foreach (TableKey CurrKey in this)

165 if(CurrKey.Name.ToLower() == ToFind.ToLower())

166 return CurrKey;

265

266 TableColumn coll = null;

267 foreach (TableColumn child in this)

268 {

269 if (child.IsPrimaryKey)

ValidationUtility.cs (https://openehr.svn.codeplex.com/svn) C# · 198 lines

20 if (cComplexObject.Attributes != null)

21 {

22 foreach (CAttribute attribute in cComplexObject.Attributes)

23 {

24 if (attribute.RmAttributeName == "name" && attribute.Children.Count > 0)

DataView.cs (https://Cerebrum.svn.codeplex.com/svn) C# · 412 lines

27 public void Add(System.Data.DataTable[] t)

28 {

29 foreach (System.Data.DataTable tbl in t)

30 {

31 this.Add(tbl.DefaultView);

40 public void Add(System.ComponentModel.ICustomTypeDescriptor[] r)

41 {

42 foreach (System.ComponentModel.ICustomTypeDescriptor row in r)

43 {

44 this.Add(new Cerebrum.Data.DataItemView(row));

datasetbuilder.cs (https://odx.svn.codeplex.com/svn) C# · 201 lines

11 {

12 DataSet ds = new DataSet();

13 foreach (string table in pm.GetTables())

14 {

15 DataTable dt = ds.Tables.Add(table);

27 }

28

29 foreach (string table in pm.GetTables())

30 {

31 string parent = pm.GetTypeTable(pm.GetRootTypeForTable(table).BaseType);

39 }

40

41 foreach ( Type type in pm.GetTypes() )

42 {

43 string table = pm.GetTypeTable(type);

BezierPrimitive.cs (https://silverlightviewport.svn.codeplex.com/svn) C# · 201 lines

53

54 // Create the indices.

55 foreach (int index in indices)

56 {

57 AddIndex(CurrentVertex + index);

ISharePointProjectItemExtensions.cs (https://cksdev.svn.codeplex.com/svn) C# · 166 lines

75 public static bool IsPartOfAnyPackagedProjectFeature(this ISharePointProjectItem item, ISharePointProjectService service)

76 {

77 foreach (ISharePointProject project in service.Projects)

78 {

79 if (item.IsPartOfPackagedProjectFeature(project))

118 List<ISharePointProject> pkgProjects = new List<ISharePointProject>();

119

120 foreach (ISharePointProject project in service.Projects)

121 {

122 if (item.IsPartOfProjectPackage(project))

AgentTypeSelect.cs (https://quickmon.svn.codeplex.com/svn) C# · 206 lines

30 lvwAgentType.Items.Clear();

31 ListViewItem lvi;

32 foreach (RegisteredAgent ar in (from a in RegisteredAgentCache.Agents

33 where a.IsNotifier

34 orderby a.Name

59 ListViewGroup generalGroup = new ListViewGroup("General");

60 lvwAgentType.Groups.Add(generalGroup);

61 foreach(string categoryName in (from a in RegisteredAgentCache.Agents

62 where a.IsCollector && a.CategoryName != "Test" && a.CategoryName != "General"

63 group a by a.CategoryName into g

81 lvi.Selected = true;

82

83 foreach (RegisteredAgent ar in (from a in RegisteredAgentCache.Agents

84 where a.IsCollector

85 orderby a.Name

DatabaseManager.cs (https://dbdoc.svn.codeplex.com/svn) C# · 234 lines

47 if (includeChildren)

48 {

49 foreach (Database db in databases)

50 {

51 db.Tables = GetTables(db);

52 foreach (Table tbl in db.Tables)

53 tbl.Columns = GetColumns(db, tbl);

54 db.Procs = GetStoredProcs(db);

106 IList<Database> databases = PersistenceProviderManager.Provider.GetDatabases();

107 IList<Database> deletedDatabases = new List<Database>();

108 foreach (string sDb in serverDatabases)

109 {

110 bool found = false;

LanguagePacksPresenter.cs (https://hg01.codeplex.com/lyncwidget) C# · 235 lines

168 var resourcesGrouped = pack.Resources.GroupBy(r => r.Name).ToList().Select(g => new { g.Key, Resources = g }).ToList();

169

170 foreach (var resourceGroup in resourcesGrouped)

171 {

172 sb.AppendLine(String.Format("{0} = {{", resourceGroup.Key));

174 var counter = 0;

175 var resourceCount = resourceGroup.Resources.Count();

176 foreach (var resource in resourceGroup.Resources)

177 {

178 var comma = (resourceCount > 1 && counter < resourceCount - 1) ? "," : "";

IncrementalPublisher.cs (https://itsolutions.svn.codeplex.com/svn) C# · 479 lines

133 this.Logger.LogNewLine();

134 this.Logger.LogMessage("The following reports were published:");

135 foreach ( Report report in this.publishedReportLog )

136 {

137 this.Logger.LogMessage(report.Path);

218 this.Logger.LogMessage("Cleaning up items on server");

219 IList<Folder> topFolders = this.currentDeploymentSet.Folders.GetTopFolders();

220 foreach ( Folder topFolder in topFolders )

221 {

222 this.CleanFolder(topFolder);

245 else

246 {

247 foreach ( CatalogFile file in this.ReportServer.GetFiles(folder) )

248 {

249 if ( !deploymentFolder.ContainsFile(file) )

ViewExplorer.cs (https://EpiInfo.svn.codeplex.com/svn) C# · 380 lines

131 viewTree.Nodes.Add(viewNode);

132

133 foreach (PageNode page in viewTree.Nodes[0].Nodes)

134 {

135 page.ImageIndex = 17;

161 viewTree.Nodes.Add(viewNode);

162

163 foreach (PageNode page in viewTree.Nodes[0].Nodes)

164 {

165 page.ImageIndex = 17;

188 public void SelectView(string viewName)

189 {

190 foreach (TreeNode node in viewTree.Nodes[0].Nodes)

191 {

192 if (node is ViewNode)

ItemsControlExtensions.cs (https://schedulr.svn.codeplex.com/svn) C# · 313 lines

121 IEnumerable<ItemsPresenter> itemsPresenters = itemsControl.GetVisualDescendents<ItemsPresenter>();

122

123 foreach (ItemsPresenter itemsPresenter in itemsPresenters)

124 {

125 DependencyObject panel = VisualTreeHelper.GetChild(itemsPresenter, 0);

280 double closestDistance = double.MaxValue;

281

282 foreach (DependencyObject i in items)

283 {

284 UIElement uiElement = i as UIElement;

WMIQueryEntry.cs (https://quickmon.svn.codeplex.com/svn) C# · 260 lines

141 if (nItems > 0)

142 {

143 foreach (ManagementObject objServiceInstance in results)

144 {

145 foreach (var prop in objServiceInstance.Properties)

170 if (nItems > 0)

171 {

172 foreach (ManagementObject objServiceInstance in results)

173 {

174 foreach (var prop in objServiceInstance.Properties)

220 if (nItems > 0)

221 {

222 foreach (ManagementObject objServiceInstance in results)

223 {

224 DataRow row = dtab.NewRow();

AccountServerCharacterGUI.cs (https://magtools.svn.codeplex.com/svn) C# · 306 lines

82 var loginCommands = Settings.SettingsManager.AccountServerCharacter.GetOnLoginCommands(CoreManager.Current.CharacterFilter.AccountName, CoreManager.Current.CharacterFilter.Server, CoreManager.Current.CharacterFilter.Name);

83

84 foreach (var command in loginCommands)

85 {

86 HudList.HudListRowAccessor newRow = loginList.AddRow();

94 var loginCompleteCommands = Settings.SettingsManager.AccountServerCharacter.GetOnLoginCompleteCommands(CoreManager.Current.CharacterFilter.AccountName, CoreManager.Current.CharacterFilter.Server, CoreManager.Current.CharacterFilter.Name);

95

96 foreach (var command in loginCompleteCommands)

97 {

98 HudList.HudListRowAccessor newRow = loginCompleteList.AddRow();

106 var periodicCommands = Settings.SettingsManager.AccountServerCharacter.GetPeriodicCommands(CoreManager.Current.CharacterFilter.AccountName, CoreManager.Current.CharacterFilter.Server, CoreManager.Current.CharacterFilter.Name);

107

108 foreach (var command in periodicCommands)

109 {

110 HudList.HudListRowAccessor newRow = periodicCommandList.AddRow();

XmlSchemaQueryExtensions.cs (https://hg01.codeplex.com/openlinqtoxsd) C# · 324 lines

72 public static IEnumerable<XmlSchema> XmlSchemas(this XmlSchemaSet set)

73 {

74 foreach (XmlSchema x in set.Schemas())

75 yield return x;

76 }

78 public static IEnumerable<XmlSchemaType> GlobalXsdTypes(this XmlSchemaSet set)

79 {

80 foreach (var x in set.XmlSchemas())

81 foreach (var y in x.GlobalXsdTypes())

92 public static IEnumerable<XmlSchemaType> GlobalXsdTypes(this XmlSchema schema)

93 {

94 foreach (XmlSchemaType x in schema.SchemaTypes.Values)

95 yield return x;

96 }

118 public static IEnumerable<XmlSchemaElement> GlobalXsdElements(this XmlSchemaSet set)

119 {

120 foreach (var x in set.XmlSchemas())

121 foreach (var y in x.GlobalXsdElements())

BSCTreeListManager.cs (https://bscmff.svn.codeplex.com/svn) C# · 299 lines

68 double current = 0;

69

70 foreach (BSCTreeListItem l in list)

71 {

72 //if (l.ParentID != "0")

115 select k).ToList();

116

117 foreach (Perspective p in persps)

118 {

119 BSCTreeListItem bli = new BSCTreeListItem();

160 //List<KPI> kpiss = (from k in context.KPIs.in

161

162 foreach (KPI k in kpis)

163 {

164 if (date == DateTime.Today) //values are in KPI

DAO_TipoOficina.cs (http://coopensens.googlecode.com/svn/trunk/) C# · 286 lines

81 ObjectParameter[] oObjectParameters = new ObjectParameter[parameters.Count];

82 int i = 0;

83 foreach (KeyValuePair<object, object> oParam in parameters)

84 {

85 oObjectParameters[i] = new ObjectParameter(oParam.Key.ToString().ToUpper(), oParam.Value.ToString().ToUpper());

114 ObjectParameter[] oObjectParameters = new ObjectParameter[parameters.Count];

115 int i = 0;

116 foreach (KeyValuePair<object, object> oParam in parameters)

117 {

118 oObjectParameters[i] = new ObjectParameter(oParam.Key.ToString().ToUpper(), oParam.Value.ToString().ToUpper());

148 ObjectParameter[] oObjectParameters = new ObjectParameter[parameters.Count];

149 int i = 0;

150 foreach (KeyValuePair<object, object> oParam in parameters)

151 {

152 oObjectParameters[i] = new ObjectParameter((string)oParam.Key, (int)oParam.Value);

EventBusManager.cs (https://SharpObjects.svn.codeplex.com/svn) C# · 277 lines

254 if (argumentList.Count > 0)

255 {

256 foreach (XElement argumentElement in argumentCollection)

257 {

258 argumentList.Add(argumentElement.Value);

ParameterizedLayoutAlgorithmBase.cs (https://xmlstudio.svn.codeplex.com/svn) C# · 225 lines

168

169 //initialize with random position

170 foreach(TVertex v in VisitedGraph.Vertices) {

171 //for vertices without assigned position

172 if(!VertexPositions.ContainsKey(v)) {

191 //get the topLeft position

192 var topLeft = new Point(float.PositiveInfinity, float.PositiveInfinity);

193 foreach(var pos in vertexPositions.Values.ToArray()) {

194 topLeft.X = Math.Min(topLeft.X, pos.X);

195 topLeft.Y = Math.Min(topLeft.Y, pos.Y);

197

198 //translate with the topLeft position

199 foreach(var v in vertexPositions.Keys.ToArray()) {

200 var pos = vertexPositions[v];

201 pos.X -= topLeft.X;

t_regimen.cs (http://ppp-eym.googlecode.com/svn/trunk/) C# · 336 lines

87 // This is the principal end in an association that performs cascade deletes.

88 // Remove the cascade delete event handler for any entities in the current collection.

89 foreach (t_planillas item in _t_planillas)

90 {

91 ChangeTracker.ObjectStateChanging -= item.HandleCascadeDelete;

98 // This is the principal end in an association that performs cascade deletes.

99 // Add the cascade delete event handler for any entities that are already in the new collection.

100 foreach (t_planillas item in _t_planillas)

101 {

102 ChangeTracker.ObjectStateChanging += item.HandleCascadeDelete;

134 // This is the principal end in an association that performs cascade deletes.

135 // Remove the cascade delete event handler for any entities in the current collection.

136 foreach (t_regimen_tipos item in _t_regimen_tipos)

137 {

138 ChangeTracker.ObjectStateChanging -= item.HandleCascadeDelete;

WNet.cs (https://SharpMedia.svn.codeplex.com/svn) C# · 301 lines

278 static void GenerateExceptionIfError(int error, params int[] successErrorCodes)

279 {

280 foreach (int successCode in successErrorCodes)

281 if (error == successCode)

282 return;

au_EducationType.cs (https://itsolutions.svn.codeplex.com/svn) C# · 329 lines

294 if (e.NewItems != null)

295 {

296 foreach (au_PersonEducationHistory item in e.NewItems)

297 {

298 item.au_EducationType = this;

310 if (e.OldItems != null)

311 {

312 foreach (au_PersonEducationHistory item in e.OldItems)

313 {

314 if (ReferenceEquals(item.au_EducationType, this))

SubscriptionReposTransformationsTests.cs (https://rockbus.svn.codeplex.com/svn) C# · 218 lines

37 SubscriberInfo si = sc.EvaluationElementDictionary[id];

38 Assert.AreEqual(3, si.PipelineInfoDictionary.Count);

39 foreach (var sr in si.InfoDictionary.Values)

40 {

41 Assert.AreEqual(2, sr.Detail.RequestTransformationIds.Count);

56 PublisherInfo pi = pc.EvaluationElementDictionary[id];

57 Assert.AreEqual(3, pi.TransformationInfoDictionary.Count);

58 foreach (var ai in pi.InfoDictionary.Values)

59 {

60 Assert.AreEqual(2, ai.Detail.RequestTransformationIds.Count);

116 SubscriptionInfo sci = new SubscriptionInfo(si, sd, ei, fis);

117

118 foreach (TransformationInfo ti in si.PipelineInfoDictionary.Values)

119 {

120 if (ti.Id.StartsWith("Request"))

MatrixRenderer.cs (https://cre4ssrs.svn.codeplex.com/svn) C# · 249 lines

100 pHtml.AppendFormat("<TABLE BORDER=\"0\" CELLSPACING=\"0\" CELLPADDING=\"0\">");

101 cContent[0] = "<TD ROWSPAN=\"" + (ColOffset + 1).ToString() + "\" COLSPAN=\"" + (RowOffset + 1).ToString() + "\">" + Renderer.RenderReportItem(reportMatrix.Corner) + "</TD>" + cContent[0];

102 foreach (string c in cContent)

103 {

104 if (c != null&& c != "")

HelperClass.cs (https://cmdlethelpviewer.svn.codeplex.com/svn) C# · 197 lines

13 internal static void ParseXElement(XElement cmdRootXElement, CmdletCommand cmdletCommand)

14 {

15 foreach (XElement cmdParentXElement in cmdRootXElement.Elements())

16 {

17 switch (cmdParentXElement.Name.LocalName)

47 internal static void GetCmdDetail(XElement cmdParentXElement, CmdletCommand cmdletCommand)

48 {

49 foreach (XElement cmdChildXElement in cmdParentXElement.Elements())

50 {

51 switch (cmdChildXElement.Name.LocalName)

76 {

77 Collection<CmdletParameter> parametersCollection = new Collection<CmdletParameter>();

78 foreach (XElement cmdChildXElement in cmdParentXElement.Elements())

79 {

80 CmdletParameter cmdletparameter = new CmdletParameter();

Program.cs (https://haloreachapi.svn.codeplex.com/svn) C# · 226 lines

111 if (e.Argument.StatisticsByMap != null)

112 {

113 foreach (var mapStat in e.Argument.StatisticsByMap)

114 {

115 // Statistics for last played maps.

159 Console.WriteLine("Game Time: {0}", e.Argument.GameDetails.GameTimestamp);

160 Console.WriteLine("Players: ");

161 foreach (var pl in e.Argument.GameDetails.Players)

162 {

163 Console.WriteLine(pl.PlayerDetail == null ? "[null]" : pl.PlayerDetail.gamertag);

185 (s, e) =>

186 {

187 foreach (var gm in e.Argument.RecentGames)

188 {

189 Console.WriteLine(String.Format("Game Id: {3}\r\n\tScore: {0}\r\n\tKills: {1}\r\n\tRating: {2}", gm.RequestedPlayerScore, gm.RequestedPlayerKills, gm.RequestedPlayerRating, gm.GameId));

FuncName.cs (https://qm.svn.codeplex.com/svn) C# · 271 lines

129 {

130 int hashCode = ID.GetHashCode();

131 foreach (Type type in Signature)

132 hashCode = hashCode * 37 + type.GetHashCode();

133 return hashCode;

provincias.cs (http://ppp-eym.googlecode.com/svn/trunk/) C# · 348 lines

142 // This is the principal end in an association that performs cascade deletes.

143 // Remove the cascade delete event handler for any entities in the current collection.

144 foreach (distritos item in _distritos)

145 {

146 ChangeTracker.ObjectStateChanging -= item.HandleCascadeDelete;

153 // This is the principal end in an association that performs cascade deletes.

154 // Add the cascade delete event handler for any entities that are already in the new collection.

155 foreach (distritos item in _distritos)

156 {

157 ChangeTracker.ObjectStateChanging += item.HandleCascadeDelete;

307 if (e.NewItems != null)

308 {

309 foreach (distritos item in e.NewItems)

310 {

311 item.provincias = this;

Program.cs (https://myazurebackup.svn.codeplex.com/svn) C# · 225 lines

92

93 //Load files information + displat file information.

94 BackupEntityCommandActions.LoadAll().ToList().ForEach(WriteInformation);

95

96 break;

160 }

161 StringBuilder sbItems = new StringBuilder();

162 foreach (var item in items)

163 {

164 sbItems.Append(string.Format("{0} - {1}\n\r", item.Name, item.Id));

185 case CommandType.TagLoadAll:

186 StringBuilder sbLoadAll = new StringBuilder();

187 foreach (var item in TagCommandActions.LoadAll())

188 {

189 sbLoadAll.Append(string.Format("{0} - {1}\n\r", item.Name, item.Id));

NetworkMethodsTest.cs (https://ClusterAware.svn.codeplex.com/svn) C# · 241 lines

140 _manager.CacheInstances = true;

141 var target = new NetworkMethods(_manager);

142 foreach (var net in target.GetNetworks())

143 {

144 var olddes = net.Description;

151 }

152 _manager.CacheInstances = false;

153 foreach (var net in target.GetNetworks())

154 {

155 var olddes = net.Description;

186 _manager.CacheInstances = true;

187 var target = new NetworkMethods(_manager);

188 foreach (var net in target.GetNetworks())

189 {

190 var actual = target.GetNetwork(net.Name);

TcpConnectionListener.cs (https://tigermud.svn.codeplex.com/svn) C# · 279 lines

202 try

203 {

204 foreach (ClientListener clientListener in connectedClients)

205 {

206 clientListener.StopListening();

222 try

223 {

224 foreach (ClientListener cl in connectedClients)

225 {

226 // Try to save his data

239 try

240 {

241 foreach (ClientListener cl in connectedClients)

242 {

243 if (cl.Active)

StyleT.cs (https://e12.svn.codeplex.com/svn) C# · 544 lines

47 string temp = "";

48 var query = from table in FontFamily.Families.Where(k => k.Name == fontFamalyT) select new { Name = table.Name };

49 foreach (var item in query) temp = item.Name;

50 if (temp != "")

51 {

186 string str = "";

187 // <CYCLE>так как элементов типа Sbutton может быть более чем 1 проходим циклам</CYCLE>

188 foreach (var elements in queryElement)

189 {

190 tempOBJ.check = true;

258 string str = "";

259 //<MORE_SB> так как элемента типа Sbutton могут быть более чем 1 проходим циклам</MORE_SB>

260 foreach (var elements in queryElement)

261 {

262 tempOBJ.check = true;

MethodeProvider.cs (https://PsTFS.svn.codeplex.com/svn) C# · 212 lines

42 // {

43 // ProjectCollection projects = witstore.Projects;

44 // foreach (Project project in projects)

45 // {

46 // WorkItemTypeCollection witc = project.WorkItemTypes;

47 // foreach (WorkItemType wit in witc)

48 // {

49 // var t = from u in listWorkitemType

61 // {

62 // WorkItemTypeCollection witc = witstore.Projects[Context.GetContext().Project].WorkItemTypes;

63 // foreach (WorkItemType wit in witc)

64 // {

65 // listWorkitemType.Add(new StructureWorkitemType() { Name = wit.Name });

Workbook.php (https://PHPExcel.svn.codeplex.com/svn) PHP · 441 lines ✨ Summary

This PHP class generates XML output for Microsoft Excel file formats, specifically for creating a workbook’s structure and content. It provides methods to create worksheets, set page setup options, define print areas, and more, allowing users to generate XML files that can be used to import data into Excel. The code is likely used in a larger application or library for working with Excel files programmatically.

303 // Loop named ranges

304 $namedRanges = $pPHPExcel->getNamedRanges();

305 foreach ($namedRanges as $namedRange) {

306 $this->_writeDefinedNameForNamedRange($objWriter, $namedRange);

307 }

FileSystemScanner.cs (https://SourceBackup.svn.codeplex.com/svn) C# · 405 lines

339 if (alive && hasMatch)

340 {

341 foreach (string fileName in names)

342 {

343 try

369 {

370 string[] names = System.IO.Directory.GetDirectories(directory);

371 foreach (string fulldir in names)

372 {

373 if ((directoryFilter == null) || (directoryFilter.IsMatch(fulldir)))

ThreadSafeStack.cs (https://WPFImageViewer.svn.codeplex.com/svn) C# · 357 lines

90 AquireLock();

91 {

92 foreach (TItem item in items)

93 _stack.Push(item);

94

PluginServices.cs (https://notepadx.svn.codeplex.com/svn) C# · 296 lines

45

46 //Go through all the files in the plugin directory

47 foreach (string fileOn in Directory.GetFiles(Path))

48 {

49 FileInfo file = new FileInfo(fileOn);

65 {

66 AvailablePlugin tmp = null;

67 foreach (AvailablePlugin pluginOn in colAvailablePlugins)

68 {

69 if((pluginOn.Instance.Name.Equals(pluginNameOrPath)) || pluginOn.AssemblyPath.Equals(pluginNameOrPath))

91 public void ClosePlugins()

92 {

93 foreach (AvailablePlugin pluginOn in colAvailablePlugins)

94 {

95 try

JSonArray.cs (https://codetitans.svn.codeplex.com/svn) C# · 391 lines

40 // convert and copy data as an array:

41 int i = 0;

42 foreach (Object d in data)

43 typedData[i++] = (IJSonObject)d;

44

70 _data = new List<IJSonObject>(data.Count);

71 // convert data:

72 foreach (Object d in data)

73 _data.Add((IJSonObject) d);

74 }

83 // convert and copy data as an array:

84 int i = 0;

85 foreach (IJSonObject d in data)

86 typedCopy[i++] = d;

87

ItdmCommandLine.cs (https://hg01.codeplex.com/dbsourcetools) C# · 373 lines

240 public void RegisterParameter(CmdLineParameter[] parameters)

241 {

242 foreach (CmdLineParameter p in parameters)

243 RegisterParameter(p);

244 }

296

297 // Check that required parameters are present in the command line.

298 foreach (string key in parameters.Keys)

299 if (parameters[key].Required && !parameters[key].Exists)

300 throw new CmdLineException(key, "Required parameter is not found.");

309 {

310 int len = 0;

311 foreach (string key in parameters.Keys)

312 len = Math.Max(len, key.Length);

313

Style.php (https://PHPExcel.svn.codeplex.com/svn) PHP · 748 lines ✨ Summary

This PHP class provides methods to access and manipulate various styles in a PHPExcel object, such as fills, fonts, borders, number formats, and conditional styles. It allows for retrieving arrays of unique styles based on their hash codes, making it easier to manage and compare different style configurations. The class is designed to work with the PHPExcel library, which is used for working with Excel files in PHP.

602

603 for ($i = 0; $i < $pPHPExcel->getSheetCount(); $i++) {

604 foreach ($pPHPExcel->getSheet($i)->getStyles() as $style) {

605 $aStyles[] = $style;

606 }

627

628 for ($i = 0; $i < $pPHPExcel->getSheetCount(); $i++) {

629 foreach ($pPHPExcel->getSheet($i)->getStyles() as $style) {

630 if (count($style->getConditionalStyles()) > 0) {

631 foreach ($style->getConditionalStyles() as $conditional) {

656 $aStyles = $this->allStyles($pPHPExcel);

657

658 foreach ($aStyles as $style) {

659 if (!array_key_exists($style->getFill()->getHashCode(), $aFills)) {

660 $aFills[ $style->getFill()->getHashCode() ] = $style->getFill();

ProgramROMRAM.cs (https://rapidhdl.svn.codeplex.com/svn) C# · 257 lines

141 {

142 int iLines = Utility.Count(sFileText,"\n");

143 foreach (int iAddress in oProgram.AddressToLine.Keys)

144 {

145 int iLine = oProgram.AddressToLine[iAddress] + iLines;

147 }

148 sFileText += oProgram.FileText;

149 foreach (int iBreakpoint in oProgram.Breakpoints)

150 {

151 lBreakpoints.Add(iBreakpoint);

156 {

157 oFPGARAM = new FPGABlock();

158 foreach (int iAddress in poRAMProgram.ProgramRAMIR.Keys)

159 {

160 int iIR = poRAMProgram.ProgramRAMIR[iAddress];

FakedEnumeratorManager.cs (https://LateBindingApi.svn.codeplex.com/svn) C# · 245 lines

37 select a);

38

39 foreach (XElement itemFace in interfaces)

40 {

41 XElement countNode = GetCountNode(itemFace);

71 ));

72

73 foreach (XElement itemRef in itemNode.Element("Parameters").Element("RefLibraries").Elements("Ref"))

74 fakedEnum.Element("Parameters").Element("RefLibraries").Add(new XElement("Ref", new XAttribute("Key", itemRef.Attribute("Key").Value)));

75

76 foreach (XElement itemRef in itemNode.Element("RefLibraries").Elements("Ref"))

77 fakedEnum.Element("RefLibraries").Add(new XElement("Ref", new XAttribute("Key", itemRef.Attribute("Key").Value)));

78

XQueryNodeIterator.cs (https://qm.svn.codeplex.com/svn) C# · 470 lines

381 {

382 List<XPathItem> res = new List<XPathItem>();

383 foreach (XPathItem item in iter)

384 {

385 if (res.Count == 10)

View.cs (https://EpiInfo.svn.codeplex.com/svn) C# · 462 lines

166 dataTableNames.Clear();

167

168 foreach (string s in tableNames)

169 {

170 dataTableNames.Add(s);

DirectoryBrowser.cs (https://code.google.com/p/filehatchery/) C# · 296 lines

260 m_ItemList.Add(item);

261 }

262 foreach (DirectoryInfo dir in m_CurrentDir.GetDirectories())

263 {

264 if (ShowHiddenFiles == false && (dir.Attributes & FileAttributes.Hidden) == FileAttributes.Hidden) continue;

265 m_ItemList.Add(new DirectoryItem(dir, dir.Name, this));

266 }

267 foreach (FileInfo file in m_CurrentDir.GetFiles())

268 {

269 if (ShowHiddenFiles == false && (file.Attributes & FileAttributes.Hidden) == FileAttributes.Hidden) continue;

ConvertedVariable.cs (https://SharpMap.svn.codeplex.com/svn) C# · 398 lines

185 //rewrite variable value filter to the domain of the source.

186 IList<IVariableFilter> filterList = new List<IVariableFilter>();

187 foreach (var filter in filters)

188 {

189 //TODO: rewrite to IEnumerable etc

192 var variableValueFilter = filter as IVariableValueFilter;

193 IList values = new List<TSource>();

194 foreach (TTarget obj in variableValueFilter.Values)

195 {

196 values.Add(toSource(obj));

NewsFacade.cs (https://nma.svn.codeplex.com/svn) C# · 439 lines

59 List<NewsDTO> listDto = new List<NewsDTO>();

60

61 foreach (var item in result)

62 {

63 listDto.Add(Mapper.Map<News, NewsDTO>((News)item));

81 List<PollDTO> listDto = new List<PollDTO>();

82

83 foreach (var item in result)

84 {

85 listDto.Add(Mapper.Map<Poll, PollDTO>((Poll)item));

245 IList<NewsDTO> list = new List<NewsDTO>();

246

247 result.ToList().ForEach(x =>

248 {

249 list.Add(Mapper.Map<News, NewsDTO>((News)x));

AddXsdAttributeDialog.xaml.cs (https://xmlstudio.svn.codeplex.com/svn) C# · 322 lines

142 } else if(this.IsValueListBoxVisible) {

143 var values = value.Split(' ');

144 foreach(var v in values) {

145 localValuesListBox.SelectedItems.Add(v);

146 }

156 var sb = new StringBuilder();

157 var selectedItems = localValuesListBox.SelectedItems;

158 foreach(var item in selectedItems) {

159 sb.Append(" " + item.ToString());

160 }

ThreeStateTreeNode.cs (https://joshua18.svn.codeplex.com/svn) C# · 272 lines

138 // including this node.

139 CheckBoxState state = 0;

140 foreach (TreeNode node in this.Parent.Nodes)

141 {

142 ThreeStateTreeNode child = node as ThreeStateTreeNode;

218 {

219 ThreeStateTreeNode child;

220 foreach (TreeNode node in this.Nodes)

221 {

222 // It is possible node is not a ThreeStateTreeNode, so check first.

Grid.cs (https://personalplaner.svn.codeplex.com/svn) C# · 400 lines

48

49 int i = 0;

50 foreach (DataRowView dvrow in m_personen)

51 {

52 int prsid = int.Parse(dvrow["prsid"].ToString());

176 // m_saldoTable.AddItem();

177

178 foreach (DataRowView row in m_personen)

179 {

180 if (int.Parse(row["prsid"].ToString()) > 0)

MainViewModel.cs (https://hg01.codeplex.com/atha) C# · 398 lines ✨ Summary

This is a C# implementation of a main view model for a test runner application. It manages various aspects such as test scripts, saved file paths, and client-side execution. The view model provides methods to open tests, execute tests, save tests, and dispose of resources. It also handles events triggered by user interactions, such as toggling the tutorial mode.

92 var observables = new List<IDisposable>();

93

94 foreach (var lang in languages)

95 {

96 observables.Add(Observable

348 testScripts =>

349 {

350 foreach (var testScript in testScripts)

351 this.TestScripts.Add(testScript);

352 });

386 {

387 if (this._observables != null)

388 foreach (var observable in this._observables)

389 observable.Dispose();

390 }

Session.cs (https://hg01.codeplex.com/messengerbot) C# · 265 lines ✨ Summary

This C# class represents a session for an MSN chat application, handling various events and interactions with other systems. It maintains a state of each system involved in the conversation and updates this state as necessary. The class provides event handlers for common MSN chat events, such as user joining or leaving, messages being sent or received, and errors occurring during communication.

114 private void TextMessageReceived(object sender, TextMessageEventArgs e)

115 {

116 foreach (var systemState in _SystemState)

117 systemState.Item1.MessageReceived(Bot, this, systemState.Item2, e.Message.Text);

118

163 {

164 _SystemState.Clear();

165 foreach (ISystem system in Bot.Configuration.Systems)

166 {

167 object state = system.SessionStarted(Bot, this);

177 private void SessionClosed(object sender, EventArgs e)

178 {

179 foreach (var systemState in _SystemState)

180 systemState.Item1.SessionEnded(Bot, this, systemState.Item2);

181 _SystemState.Clear();

TestCheckBoxes.cs (https://hg01.codeplex.com/extendedimmediate2) C# · 296 lines ✨ Summary

This C# code is a test class for an ObjectListView control with checkbox features, testing its functionality and behavior under various scenarios, including item checking, space bar activation, and subitem checkboxes. It verifies that the control correctly handles different states and events, such as checked and unchecked states, and provides a foundation for further testing and validation of the ObjectListView’s checkbox capabilities.

121 this.olv.BooleanCheckStateGetter = delegate(object x) { return x != PersonDb.All[0]; };

122 this.olv.SetObjects(PersonDb.All);

123 foreach (Person x in PersonDb.All) {

124 if (x == PersonDb.All[0])

125 Assert.IsFalse(this.olv.IsChecked(x));

231 [Test]

232 public void TestCheckedAspectName() {

233 foreach (Person p in PersonDb.All)

234 p.IsActive = false;

235

238 Assert.IsEmpty(this.olv.CheckedObjects);

239

240 foreach (Person p in PersonDb.All)

241 p.IsActive = true;

242 this.olv.SetObjects(PersonDb.All);

ContractUtils.cs (https://github.com/Catweazle/ironruby.git) C# · 207 lines

164

165 int i = 0;

166 foreach (var item in collection) {

167 if (item == null) {

168 throw ExceptionUtils.MakeArgumentItemNullException(i, collectionName);

VendorSpecificAttribute.cs (http://tinyradius4net.googlecode.com/svn/trunk/) C# · 340 lines

53 {

54 base.Dictionary = value;

55 foreach (RadiusAttribute a in subAttributes)

56 {

57 a.Dictionary = value;

134

135 var result = new List<RadiusAttribute>();

136 foreach (RadiusAttribute a in subAttributes)

137 {

138 if (attributeType == a.Type)

218 try

219 {

220 foreach (RadiusAttribute a in subAttributes)

221 {

222 byte[] c = a.WriteAttribute();

DebugConsole.cs (https://LateBindingApi.svn.codeplex.com/svn) C# · 373 lines

111

112 int i = 0;

113 foreach (object item in args)

114 {

115 string replaceValue = "";

SolutionInventoryGatherer.cs (https://trentacularfeatures.svn.codeplex.com/svn) C# · 244 lines

26 {

27 var inventory = new DeploymentInventory();

28 foreach (var solutionName in Filenames)

29 {

30 var existingSolution = SPFarm.Local.GetSolutionByName(solutionName);

71 webApplications.Add(SPAdministrationWebApplication.Local);

72

73 foreach (var webApp in webApplications)

74 {

75 Console.WriteLine(string.Format("Beginning scan of all sites in web application: {0}", webApp.GetUrl()));

77 try

78 {

79 foreach (SPSite unprivelegedSite in webApp.Sites)

80 {

81 try

LoginService.cs (https://bitbucket.org/jeffmccommas/acex.git) C# · 339 lines

143 // var userPortalList = new List<UserPortalList>();

144

145 // foreach (var portal in portalList)

146 // {

147 // userPortalList.Add(new UserPortalList() { PortalId = portal.PortalId, PortalName = portal.PortalName, IsDefault = portal.IsDefault, PortalComponent = portal.PortalComponent });

322 where p.ClientId == clientId select new { p.FirstName, p.LastName, p.UserType, p.UserId };

323

324 foreach (var user in users)

325 {

326 userDetails.Add(new UserDetails()

ConsoleCommandLineLexer.cs (https://NitoMVVM.svn.codeplex.com/svn) C# · 307 lines

143

144 Buffer buffer = new Buffer();

145 foreach (var ch in commandLine)

146 {

147 switch (state)

278 ret.Append('"');

279 int backslashes = 0;

280 foreach (var ch in argument)

281 {

282 if (ch == '\\')

AdvancedPageSetupDialogForm.cs (https://scl.svn.codeplex.com/svn) C# · 286 lines

254 string xPrinterName = (string)formatter.Deserialize(fs);

255 PageSettings xDefaultPageSettings = mPrintDocument.DefaultPageSettings;

256 foreach (string xStr in PrinterSettings.InstalledPrinters)

257 {

258 if (xPrinterName == xStr)

265 xDefaultPageSettings.PaperSize = xPaperSize;

266 string xSourceName = (string)formatter.Deserialize(fs);

267 foreach (PaperSource xPaperSource in xDefaultPageSettings.PrinterSettings.PaperSources)

268 {

269 if (xPaperSource.SourceName == xSourceName)

AddOrderViewModel.cs (https://mc.svn.codeplex.com/svn) C# · 328 lines

140 // добавляем или обновляем каждый добавленный

141 Responsiblefororder ru = null;

142 foreach (ResponsibleForOrderEntity reu in ResponsibleForOrderEntities)

143 {

144 ru = Order.Responsiblefororders.FirstOrDefault(p => (p.Id == reu.Id && reu.Id != 0));

192 if (_order != null)

193 {

194 foreach (Responsiblefororder r in _order.Responsiblefororders)

195 {

196 var rr = new ResponsibleForOrderEntity { Id = r.Id, Department = r.Department, Employee = r.Employee, Contracttype = r.Contracttype};

ConditionalAssignDialog.cs (https://EpiInfo.svn.codeplex.com/svn) C# · 298 lines

69 this.txtAssignCondition.Text = DataFilters.GenerateReadableDataFilterString();

70

71 //foreach (KeyValuePair<string, object> kvp in conditionalAssignRule.Conditions)

72 //{

73 // this.txtAssignValue.Text = kvp.Value.ToString();

VisitEditViewModel.cs (https://balades.svn.codeplex.com/svn) C# · 414 lines

289 saveVisitObject.Visit.VisitID = this.SourceVisit.VisitID;

290

291 foreach (PictureViewModel picture in this.SourceVisit.Pictures)

292 {

293 Picture pictureSave = new Picture();

302 }

303

304 foreach (InformationViewModel information in this.SourceVisit.Informations)

305 {

306 Information informationSave = new Information();

358 throw e.Error;

359

360 foreach (IPicture picture in e.Result)

361 {

362 this.SourceVisit.Pictures.Add(new PictureViewModel(picture));

EquipoBLL.cs (https://inventariohardsoft.svn.codeplex.com/svn) C# · 233 lines

123 LogicaNegocio.UsuarioBLL usuarioBLL;

124

125 foreach (AccesoDatos.EQUIPO equipo in updateEquipos)

126 {

127 tipoMotivoBLL = new TipoMotivoBLL();

ComboActionRewriter.cs (git://github.com/IronLanguages/main.git) C# · 209 lines ✨ Summary

This is a C# class that implements the IExpressionVisitor interface and provides an implementation for the VisitDynamic method, which is called when the visitor encounters a dynamic expression in the code. The method creates a new instance of the ComboExpression class and returns it as the result of the visitation.

123 int baseActionCount = actionCount;

124

125 foreach (BinderMappingInfo comboInfo in combo.Binders) {

126 List<ParameterMappingInfo> newInfo = new List<ParameterMappingInfo>();

127

128 foreach (ParameterMappingInfo info in comboInfo.MappingInfo) {

129 if (info.IsParameter) {

130 // all of the inputs from the child now become ours

ltablib.cs (git://github.com/gerich-home/kopilua.git) C# · 298 lines

17 private static int aux_getn(lua_State L, int n) {luaL_checktype(L, n, LUA_TTABLE); return luaL_getn(L, n);}

18

19 private static int foreachi (lua_State L) {

20 int i;

21 int n = aux_getn(L, 1);

34

35

36 private static int _foreach (lua_State L) {

37 luaL_checktype(L, 1, LUA_TTABLE);

38 luaL_checktype(L, 2, LUA_TFUNCTION);

278 private readonly static luaL_Reg[] tab_funcs = {

279 new luaL_Reg("concat", tconcat),

280 new luaL_Reg("foreach", _foreach),

281 new luaL_Reg("foreachi", foreachi),

SharedAssemblies.cs (https://SolutionFramework.svn.codeplex.com/svn) C# · 237 lines

48 bool isConstructor = key.IsConstructor;

49 IEnumerable<MethodBase> enumerable = isConstructor ? sharedType.GetConstructors().Cast<MethodBase>() : sharedType.GetMethods().Cast<MethodBase>();

50 foreach (MethodBase base2 in enumerable)

51 {

52 if (!isConstructor && !string.Equals(base2.Name, key.MemberName, StringComparison.OrdinalIgnoreCase))

83 return this.FindSharedType(type);

84 }

85 foreach (Assembly assembly in this.Assemblies)

86 {

87 foreach (Type type2 in AssemblyUtilities.GetExportedTypes(assembly, this._logger))

98 private Type FindSharedType(Type type)

99 {

100 foreach (Assembly assembly in this.Assemblies)

101 {

102 foreach (Type type2 in AssemblyUtilities.GetExportedTypes(assembly, this._logger))

JSonObjectConverter.cs (https://codetitans.svn.codeplex.com/svn) C# · 210 lines

84 int i = 0;

85

86 foreach (IJSonObject data in source.ArrayItems)

87 {

88 result.SetValue(ToObject(data, Activator.CreateInstance(resultType), resultType), i++);

125

126 // deserialize all fields:

127 foreach (FieldInfo fieldInfo in fieldMembers)

128 {

129 ToObjectSetField(source, destination, oType, jsonAttribute, fieldInfo);

131

132 // deserialize all properties:

133 foreach (PropertyInfo propertyInfo in propertyMembers)

134 {

135 ToObjectSetProperty(source, destination, oType, jsonAttribute, propertyInfo);

TreeBuilderTreeNodeFolder.cs (https://SolutionFramework.svn.codeplex.com/svn) C# · 301 lines

109 IElement element = (IElement)folder.FolderItemSource;

110

111 foreach (var childElement in element.ChildElements)

112 {

113 subMenus.Add(new ContextMenuItem(null, childElement.Name, childElement.Name, AddMemberAsNode));

114 }

115

116 foreach (var childElement in element.ChildElements)

117 {

118 subMenus.Add(new ContextMenuItem(null, childElement.Name, childElement.Name, AddMemberAsNode));

UserRect.cs (https://hg.codeplex.com/freepresenter) C# · 296 lines

46 g.DrawRectangle(new Pen(Color.Red),rect);

47

48 foreach (PosSizableRect pos in Enum.GetValues(typeof(PosSizableRect)))

49 {

50 g.DrawRectangle(new Pen(Color.Red),GetRect(pos));

240 private PosSizableRect GetNodeSelectable(Point p)

241 {

242 foreach (PosSizableRect r in Enum.GetValues(typeof(PosSizableRect)))

243 {

244 if (GetRect(r).Contains(p))

CodeDomBoClass.cs (https://FireStarterModeller.svn.codeplex.com/svn) C# · 196 lines

33 CodeTypeMember member = null;

34

35 foreach (IModelProperty property in _modelClass.Properties)

36 {

37 if (property.GenerateCode)

50 firstMember = null;

51 member = null;

52 foreach (IModelRelationship relationship in _modelClass.Relationships)

53 {

54 if (relationship.GenerateCode)

TreeListTests.cs (https://GeoAPI.svn.codeplex.com/svn) C# · 425 lines

301 Double previous = -1;

302

303 foreach (Double current in tree)

304 {

305 Assert.Less(previous, current);

YnGroup3D.cs (https://git01.codeplex.com/yna) C# · 294 lines

38 _camera = value;

39

40 foreach (YnEntity3D sceneObject in _members)

41 sceneObject.Camera = _camera;

42 }

49 _world = Matrix.Identity;

50

51 foreach (YnEntity3D members in _members)

52 _world *= members.World;

53

56 set

57 {

58 foreach (YnEntity3D members in _members)

59 members.World *= value;

60 }

Worksheet.php (https://PHPExcel.svn.codeplex.com/svn) PHP · 1096 lines ✨ Summary

This PHP code is part of a library for generating Microsoft Office XML files, specifically worksheets. It writes data to an XML file in a format compatible with Microsoft Excel. The code handles various elements such as cells, drawings, comments, and legacy drawing styles, formatting the output according to specific office versions (e.g., 2003, 2007, 2010).

295 // Outline level - row

296 $outlineLevelRow = 0;

297 foreach ($pSheet->getRowDimensions() as $dimension) {

298 if ($dimension->getOutlineLevel() > $outlineLevelRow) {

299 $outlineLevelRow = $dimension->getOutlineLevel();

304 // Outline level - column

305 $outlineLevelCol = 0;

306 foreach ($pSheet->getColumnDimensions() as $dimension) {

307 if ($dimension->getOutlineLevel() > $outlineLevelCol) {

308 $outlineLevelCol = $dimension->getOutlineLevel();

330

331 // Loop through column dimensions

332 foreach ($pSheet->getColumnDimensions() as $colDimension) {

333 // col

334 $objWriter->startElement('col');

HashTable.php (https://PHPExcel.svn.codeplex.com/svn) PHP · 213 lines ✨ Summary

This PHP class, PHPExcel_HashTable, implements a hash table data structure. It allows adding, removing, and retrieving items based on their unique hash codes. The class provides methods for creating a new instance from an array, clearing the table, counting the number of items, and converting the table to an array.

90 }

91

92 foreach ($pSource as $item) {

93 $this->add($item);

94 }

119

120 $deleteKey = -1;

121 foreach ($this->_keyMap as $key => $value) {

122 if ($deleteKey >= 0) {

123 $this->_keyMap[$key - 1] = $value;

204 public function __clone() {

205 $vars = get_object_vars($this);

206 foreach ($vars as $key => $value) {

207 if (is_object($value)) {

208 $this->$key = clone $value;

runall.php (https://PHPExcel.svn.codeplex.com/svn) PHP · 77 lines ✨ Summary

This PHP code runs a series of tests on the PHPExcel library, clearing existing test files and then executing each test using the shell_exec function to run the corresponding PHP script. The output is displayed for each test, showing its name and execution result.

57

58 // First, clear all results

59 foreach ($aTests as $sTest) {

60 @unlink( str_replace('.php', '.xls', $sTest) );

61 @unlink( str_replace('.php', '.xlsx', $sTest) );

67

68 // Run all tests

69 foreach ($aTests as $sTest) {

70 echo '============== TEST ==============' . "\r\n";

71 echo 'Test name: ' . $sTest . "\r\n";

Worksheet.php (https://PHPExcel.svn.codeplex.com/svn) PHP · 787 lines ✨ Summary

This PHP class generates an XML representation of a Microsoft Excel worksheet. It writes the worksheet’s structure, including cells, formulas, and drawings, to an XML file. The class uses a hash table to store styles and their corresponding indices for efficient lookup. It also handles various data types, such as strings, numbers, and booleans, and maps them to their respective XML elements.

263

264 // Loop trough column dimensions

265 foreach ($pSheet->getColumnDimensions() as $colDimension) {

266 // col

267 $objWriter->startElement('col');

286 // Loop trough cells

287 $cellCollection = $pSheet->getCellCollection();

288 foreach ($cellCollection as $cell) {

289 if ($cell->getColumn() == $colDimension->getColumnIndex()) {

290 $tempWidth = PHPExcel_Shared_Font::calculateColumnWidth(

366

367 // Loop trough styles in the current worksheet

368 foreach ($pSheet->getStyles() as $cellCoodrinate => $style) {

369 if (count($style->getConditionalStyles()) > 0) {

370 foreach ($style->getConditionalStyles() as $conditional) {

ContentTypes.php (https://PHPExcel.svn.codeplex.com/svn) PHP · 239 lines ✨ Summary

This PHP code generates a XML file that contains metadata about an Excel spreadsheet, including image mime types and content types for various parts of the file. It uses the PHPExcel_Shared_XMLWriter class to write the XML data to a string, which can then be written to a file. The output is a ZIP-compatible XML file that can be used by Microsoft Office applications to read and write Excel files.

160 for ($i = 0; $i < $sheetCount; ++$i) {

161 if (count($pPHPExcel->getSheet()->getHeaderFooter()->getImages()) > 0) {

162 foreach ($pPHPExcel->getSheet()->getHeaderFooter()->getImages() as $image) {

163 if (!isset( $aMediaContentTypes[strtolower($image->getExtension())]) ) {

164 $aMediaContentTypes[strtolower($image->getExtension())] = $this->_getImageMimeType( $image->getPath() );

Save.php (git://github.com/isaacsu/twich.git) PHP · 34 lines ✨ Summary

This PHP class, Rediska_Command_Save, is used to save data from a Redis database to disk. It sends a synchronous “SAVE” command to all connected Redis servers if $background is false, and an asynchronous “BGSAVE” command if true. The method iterates through each connection and adds the command to be executed on that server.

23 }

24

25 foreach($this->_rediska->getConnections() as $connection) {

26 $this->_addCommandByConnection($connection, $command);

27 }

Font.php (https://PHPExcel.svn.codeplex.com/svn) PHP · 764 lines ✨ Summary

This PHP class provides a set of methods for working with Excel file formats, specifically for generating and manipulating Excel files using the PHPExcel library. It allows users to create new worksheets, add data, format cells, and more, making it a utility for building Excel-based applications. The class is designed to be used in conjunction with the PHPExcel library to generate and manipulate Excel files.

250 $lineTexts = explode("\n", $cellText);

251 $lineWitdhs = array();

252 foreach ($lineTexts as $lineText) {

253 $lineWidths[] = self::calculateColumnWidth($font, $lineText, $rotation = 0, $defaultFont);

254 }

RichText.php (https://PHPExcel.svn.codeplex.com/svn) PHP · 290 lines ✨ Summary

This PHP class, PHPExcel_RichText, represents a rich text element in an Excel spreadsheet. It allows adding and managing text elements with formatting options, such as font styles and sizes. The class also implements the PHPExcel_IComparable interface for comparing objects. It provides methods for creating new text elements, getting plain text, and setting parent cells.

146

147 // Loop trough all PHPExcel_RichText_ITextElement

148 foreach ($this->_richTextElements as $text) {

149 $returnValue .= $text->getText();

150 }

213 $sheet = $this->_parent->getParent();

214 $cellFont = $sheet->getStyle($this->_parent->getCoordinate())->getFont()->getSharedComponent();

215 foreach ($this->getRichTextElements() as $element) {

216 if (!($element instanceof PHPExcel_RichText_Run)) continue;

217

231 public function getHashCode() {

232 $hashElements = '';

233 foreach ($this->_richTextElements as $element) {

234 $hashElements .= $element->getHashCode();

235 }

GetLastSaveTime.php (git://github.com/isaacsu/twich.git) PHP · 44 lines ✨ Summary

This PHP class, Rediska_Command_GetLastSaveTime, retrieves the UNIX timestamp of the last successful save of a dataset on disk for each connected Rediska server. It sends a “LASTSAVE” command to each connection and parses the responses to return an array with timestamps for each server. If only one response is received, it returns that single timestamp.

20 $command = "LASTSAVE";

21

22 foreach($this->_rediska->getConnections() as $connection) {

23 $this->_connections[] = $connection->getAlias();

24 $this->_addCommandByConnection($connection, $command);

30 $timestamps = array();

31 $count = 0;

32 foreach($this->_connections as $connection) {

33 $timestamps[$connection] = $responses[$count];

34 $count++;

Font.php (https://PHPExcel.svn.codeplex.com/svn) PHP · 619 lines ✨ Summary

This PHP class represents a font style with various attributes such as size, boldness, italicization, and color. It provides methods to set and get these attributes, as well as calculate a unique hash code for the font style. The class also implements a deep clone method to create an exact copy of the object.

608 public function __clone() {

609 $vars = get_object_vars($this);

610 foreach ($vars as $key => $value) {

611 if ((is_object($value)) && ($key != '_parent')) {

612 $this->$key = clone $value;

build.php (https://PHPExcel.svn.codeplex.com/svn) PHP · 316 lines ✨ Summary

This PHP script creates a directory structure by copying files and directories from one location to another, while ignoring certain files and folders specified in an array of ignore patterns. It also handles file permissions and timestamps during the copy process. The output is a new directory structure with the copied files and folders, including their original timestamps and permissions.

68

69 // Add files to include

70 foreach ($aFilesToInclude as $strFile) {

71 echo date('H:i:s') . " Adding file $strFile\n";

72 addFileToZIP($strFile, $objZip, $sVersion, $sDate);

74

75 // Add paths to include

76 foreach ($aPathsToInclude as $strPath) {

77 addPathToZIP($strPath, $objZip, $sVersion, $sDate);

78 }

308

309 $ignore = false;

310 foreach ($aIgnorePatterns as $ignorePattern) {

311 if (eregi($ignorePattern, $pName)) {

312 $ignore = true;

28iterator.php (https://PHPExcel.svn.codeplex.com/svn) PHP · 68 lines ✨ Summary

This PHP code loads an Excel file, iterates through its worksheets and rows, and prints information about each cell’s coordinate and calculated value. It also displays the peak memory usage during execution. The output shows a step-by-step process of loading and processing the Excel file, providing detailed information about its contents.

44

45 echo date('H:i:s') . " Iterate worksheets\n";

46 foreach ($objPHPExcel->getWorksheetIterator() as $worksheet) {

47 echo '- ' . $worksheet->getTitle() . "\r\n";

48

49 foreach ($worksheet->getRowIterator() as $row) {

50 echo ' - Row number: ' . $row->getRowIndex() . "\r\n";

51

52 $cellIterator = $row->getCellIterator();

53 $cellIterator->setIterateOnlyExistingCells(false); // Loop all cells, even if it is not set

54 foreach ($cellIterator as $cell) {

55 if (!is_null($cell)) {

56 echo ' - Cell: ' . $cell->getCoordinate() . ' - ' . $cell->getCalculatedValue() . "\r\n";

Functions.php (https://PHPExcel.svn.codeplex.com/svn) PHP · 12039 lines ✨ Summary

This PHP code provides a set of utility functions to extend the language’s capabilities, including:

  • money_format function for formatting currency
  • mb_str_replace function for replacing multibyte characters in strings
  • Various mathematical and string manipulation functions with support for UTF-8 encoding.

These functions are designed to work around limitations in PHP’s built-in functionality.

344 $aArgs = self::flattenArray(func_get_args());

345 $argCount = 0;

346 foreach ($aArgs as $arg) {

347 // Is it a boolean value?

348 if (is_bool($arg)) {

400 $aArgs = self::flattenArray(func_get_args());

401 $argCount = 0;

402 foreach ($aArgs as $arg) {

403 // Is it a boolean value?

404 if (is_bool($arg)) {

668 // Loop through the arguments

669 $aArgs = self::flattenArray(func_get_args());

670 foreach ($aArgs as $arg) {

671 // Is it a numeric value?

672 if ((is_numeric($arg)) && (!is_string($arg))) {

PHPExcel.php (https://PHPExcel.svn.codeplex.com/svn) PHP · 383 lines ✨ Summary

This PHP class represents a spreadsheet document, providing methods for managing worksheets, sheets, and named ranges. It allows creating, adding, removing, and manipulating worksheets, as well as setting an active sheet index. The class also handles external sheet imports and provides a way to clone the object, ensuring a deep copy of the data.

253 public function getIndex(PHPExcel_Worksheet $pSheet)

254 {

255 foreach ($this->_workSheetCollection as $key => $value) {

256 if ($value->getHashCode() == $pSheet->getHashCode()) {

257 return $key;

372 public function __clone() {

373 $vars = get_object_vars($this);

374 foreach ($vars as $key => $value) {

375 if (is_object($value)) {

376 $this->$key = clone $value;

Excel2007.php (https://PHPExcel.svn.codeplex.com/svn) PHP · 1635 lines ✨ Summary

This PHP code is part of a library for generating Excel files. It processes and formats various styles, such as font sizes, colors, and alignment, into a format that can be used in an Excel file. The code converts units (e.g., px, pt, in, cm) to pixels and stores the formatted styles in an array.

351

352 $rels = simplexml_load_string($this->_getFromZipArchive($zip, "_rels/.rels")); //~ http://schemas.openxmlformats.org/package/2006/relationships");

353 foreach ($rels->Relationship as $rel) {

354 switch ($rel["Type"]) {

355 case "http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties":

381 $xmlStrings = simplexml_load_string($this->_getFromZipArchive($zip, "$dir/$xpath[Target]")); //~ http://schemas.openxmlformats.org/spreadsheetml/2006/main");

382 if (isset($xmlStrings) && isset($xmlStrings->si)) {

383 foreach ($xmlStrings->si as $val) {

384 if (isset($val->t)) {

385 $sharedStrings[] = PHPExcel_Shared_String::ControlCharacterOOXML2PHP( (string) $val->t );

391

392 $worksheets = array();

393 foreach ($relsWorkbook->Relationship as $ele) {

394 if ($ele["Type"] == "http://schemas.openxmlformats.org/officeDocument/2006/relationships/worksheet") {

395 $worksheets[(string) $ele["Id"]] = $ele["Target"];

ColumnDimension.php (https://PHPExcel.svn.codeplex.com/svn) PHP · 272 lines ✨ Summary

This PHP class, PHPExcel_Worksheet_ColumnDimension, represents a column dimension in an Excel worksheet. It stores properties such as column index, width, auto-size status, visibility, outline level, and collapsed state. The class provides getter and setter methods for each property, allowing for easy manipulation of the column’s dimensions and appearance.

260 public function __clone() {

261 $vars = get_object_vars($this);

262 foreach ($vars as $key => $value) {

263 if (is_object($value)) {

264 $this->$key = clone $value;

Worksheet.php (https://PHPExcel.svn.codeplex.com/svn) PHP · 870 lines ✨ Summary

This PHP class represents a worksheet object, providing methods for managing cell properties such as formatting, protection, and merging. It also handles autofiltering and password protection. The class includes functionality for duplicating itself and other referenced objects, making it suitable for use in spreadsheet applications.

313 $aNames = $this->getParent()->getSheetNames();

314

315 foreach ($aNames as $strName) {

316 if ($strName == $pValue || substr($strName, 0, strrpos($strName, ' ')) == $pValue) {

317 $titleCount++;

437

438 // Loop trough cells

439 foreach ($this->_cellCollection as $cell) {

440 if (PHPExcel_Cell::columnIndexFromString($highestColumn) < PHPExcel_Cell::columnIndexFromString($cell->getColumn())) {

441 $highestColumn = $cell->getColumn();

458

459 // Loop trough cells

460 foreach ($this->_cellCollection as $cell) {

461 if ($cell->getRow() > $highestRow) {

462 $highestRow = $cell->getRow();

NemerleLibraryManager.cs (git://github.com/xxVisorxx/nemerle.git) C# · 653 lines ✨ Summary

This is a C# class that implements an extension for Visual Studio’s Text Editor service. It monitors and updates information about files in open documents, such as their contents and extensions, to provide features like Class View and Code Completion. When a file is closed or saved, it updates the information accordingly.

151 // Dispose all the listeners.

152 //

153 foreach (HierarchyListener listener in _hierarchies.Values)

154 listener.Dispose();

155

156 _hierarchies.Clear();

157

158 foreach (TextLineEventListener textListener in _documents.Values)

159 textListener.Dispose();

160

245 _files.Keys.CopyTo(keys, 0);

246

247 foreach (ModuleID id in keys)

248 {

249 if (hierarchy.Equals(id.Hierarchy))